Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
371a535a
Kaydet (Commit)
371a535a
authored
Agu 12, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin: defaultparams
Change-Id: I0538bbb2e121d8feeff03535cb327c957e03de1b
üst
fceee923
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
13 deletions
+13
-13
OfficeControlAccess.cxx
fpicker/source/office/OfficeControlAccess.cxx
+1
-1
OfficeFilePicker.cxx
fpicker/source/office/OfficeFilePicker.cxx
+2
-2
OfficeFolderPicker.cxx
fpicker/source/office/OfficeFolderPicker.cxx
+1
-1
RemoteFilesDialog.cxx
fpicker/source/office/RemoteFilesDialog.cxx
+1
-1
commonpicker.cxx
fpicker/source/office/commonpicker.cxx
+2
-2
iodlg.cxx
fpicker/source/office/iodlg.cxx
+3
-3
servicehandler.cxx
framework/source/dispatch/servicehandler.cxx
+1
-1
headermenucontroller.cxx
framework/source/uielement/headermenucontroller.cxx
+1
-1
langselectionmenucontroller.cxx
framework/source/uielement/langselectionmenucontroller.cxx
+1
-1
No files found.
fpicker/source/office/OfficeControlAccess.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -399,7 +399,7 @@ namespace svt
{
Any
aRet
;
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
_nControlId
,
false
);
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
_nControlId
);
DBG_ASSERT
(
pControl
,
"OControlAccess::GetValue: don't have this control in the current mode!"
);
if
(
pControl
)
{
...
...
fpicker/source/office/OfficeFilePicker.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -449,7 +449,7 @@ sal_Int16 SvtFilePicker::implExecutePicker( )
prepareExecute
();
getDialog
()
->
EnableAutocompletion
(
true
);
getDialog
()
->
EnableAutocompletion
();
// now we are ready to execute the dialog
sal_Int16
nRet
=
getDialog
()
->
Execute
();
...
...
@@ -530,7 +530,7 @@ void SAL_CALL SvtFilePicker::startExecuteModal( const Reference< ::com::sun::sta
m_xDlgClosedListener
=
xListener
;
prepareDialog
();
prepareExecute
();
getDialog
()
->
EnableAutocompletion
(
true
);
getDialog
()
->
EnableAutocompletion
();
getDialog
()
->
StartExecuteModal
(
LINK
(
this
,
SvtFilePicker
,
DialogClosedHdl
)
);
}
...
...
fpicker/source/office/OfficeFolderPicker.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -65,7 +65,7 @@ void SAL_CALL SvtFolderPicker::startExecuteModal( const Reference< ::com::sun::s
m_xListener
=
xListener
;
prepareDialog
();
prepareExecute
();
getDialog
()
->
EnableAutocompletion
(
true
);
getDialog
()
->
EnableAutocompletion
();
getDialog
()
->
StartExecuteModal
(
LINK
(
this
,
SvtFolderPicker
,
DialogClosedHdl
)
);
}
...
...
fpicker/source/office/RemoteFilesDialog.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -1102,7 +1102,7 @@ IMPL_LINK_NOARG ( RemoteFilesDialog, CancelHdl )
}
else
{
EndDialog
(
RET_CANCEL
);
EndDialog
();
}
return
1
;
}
...
...
fpicker/source/office/commonpicker.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -120,7 +120,7 @@ namespace svt
{
::
osl
::
MutexGuard
aOwnGuard
(
m_aMutex
);
if
(
m_bExecuting
&&
m_pDlg
)
m_pDlg
->
EndDialog
(
RET_CANCEL
);
m_pDlg
->
EndDialog
();
}
m_pDlg
.
disposeAndClear
();
...
...
@@ -404,7 +404,7 @@ namespace svt
OSL_ENSURE
(
getDialog
(),
"OCommonPicker::OnCancelPicker: executing, but no dialog!"
);
if
(
getDialog
()
)
getDialog
()
->
EndDialog
(
RET_CANCEL
);
getDialog
()
->
EndDialog
();
return
0L
;
}
...
...
fpicker/source/office/iodlg.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -823,7 +823,7 @@ IMPL_LINK_NOARG(SvtFileDialog, CancelHdl_Impl)
}
else
{
EndDialog
(
RET_CANCEL
);
EndDialog
();
}
return
1L
;
}
...
...
@@ -2502,7 +2502,7 @@ Control* SvtFileDialog::getControl( sal_Int16 _nControlId, bool _bLabelControl )
void
SvtFileDialog
::
enableControl
(
sal_Int16
_nControlId
,
bool
_bEnable
)
{
Control
*
pControl
=
getControl
(
_nControlId
,
false
);
Control
*
pControl
=
getControl
(
_nControlId
);
if
(
pControl
)
EnableControl
(
pControl
,
_bEnable
);
Control
*
pLabel
=
getControl
(
_nControlId
,
true
);
...
...
@@ -2550,7 +2550,7 @@ void SvtFileDialog::AddControls_Impl( )
if
(
_nExtraBits
&
SFX_EXTRA_AUTOEXTENSION
)
{
_pImp
->
_pCbAutoExtension
->
SetText
(
SvtResId
(
STR_SVT_FILEPICKER_AUTO_EXTENSION
)
);
_pImp
->
_pCbAutoExtension
->
Check
(
true
);
_pImp
->
_pCbAutoExtension
->
Check
();
_pImp
->
_pCbAutoExtension
->
SetClickHdl
(
LINK
(
this
,
SvtFileDialog
,
AutoExtensionHdl_Impl
)
);
_pImp
->
_pCbAutoExtension
->
Show
();
}
...
...
framework/source/dispatch/servicehandler.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -186,7 +186,7 @@ css::uno::Reference< css::uno::XInterface > ServiceHandler::implts_dispatch( con
OUString
sServiceName
;
OUString
sArguments
;
sal_Int32
nArgStart
=
sServiceAndArguments
.
indexOf
(
'?'
,
0
);
sal_Int32
nArgStart
=
sServiceAndArguments
.
indexOf
(
'?'
);
if
(
nArgStart
!=-
1
)
{
sServiceName
=
sServiceAndArguments
.
copy
(
0
,
nArgStart
);
...
...
framework/source/uielement/headermenucontroller.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -144,7 +144,7 @@ void HeaderMenuController::fillPopupMenu( const Reference< ::com::sun::star::fra
pVCLPopupMenu
->
SetItemCommand
(
nId
,
aCommand
);
if
(
bHeaderIsOn
)
pVCLPopupMenu
->
CheckItem
(
nId
,
true
);
pVCLPopupMenu
->
CheckItem
(
nId
);
++
nId
;
// Check if all entries have the same state
...
...
framework/source/uielement/langselectionmenucontroller.cxx
Dosyayı görüntüle @
371a535a
...
...
@@ -217,7 +217,7 @@ void LanguageSelectionMenuController::fillPopupMenu( Reference< css::awt::XPopup
if
(
rStr
==
m_aCurLang
&&
eMode
==
MODE_SetLanguageSelectionMenu
)
{
//make a sign for the current language
pPopupMenu
->
CheckItem
(
nItemId
,
true
);
pPopupMenu
->
CheckItem
(
nItemId
);
}
++
nItemId
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment