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
0b7e226e
Kaydet (Commit)
0b7e226e
authored
Eyl 25, 2012
tarafından
Noel Grandin
Kaydeden (comit)
Noel Power
Eyl 26, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool -> bool, convert InitAccessBridge and friends
Change-Id: I08b5a76c68c67c3837427ad74106e170c64cdaaa
üst
04eee686
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
12 deletions
+12
-12
app.cxx
desktop/source/app/app.cxx
+1
-1
pamain.cxx
padmin/source/pamain.cxx
+1
-1
svdata.hxx
vcl/inc/svdata.hxx
+1
-1
svapp.hxx
vcl/inc/vcl/svapp.hxx
+1
-1
svapp.cxx
vcl/source/app/svapp.cxx
+2
-2
svdata.cxx
vcl/source/app/svdata.cxx
+6
-6
No files found.
desktop/source/app/app.cxx
Dosyayı görüntüle @
0b7e226e
...
...
@@ -1465,7 +1465,7 @@ int Desktop::Main()
RTL_LOGFILE_CONTEXT_TRACE
(
aLog
,
"{ GetEnableATToolSupport"
);
if
(
Application
::
GetSettings
().
GetMiscSettings
().
GetEnableATToolSupport
()
)
{
sal_B
ool
bQuitApp
;
b
ool
bQuitApp
;
if
(
!
InitAccessBridge
(
true
,
bQuitApp
)
)
if
(
bQuitApp
)
...
...
padmin/source/pamain.cxx
Dosyayı görüntüle @
0b7e226e
...
...
@@ -117,7 +117,7 @@ int MyApp::Main()
if
(
Application
::
GetSettings
().
GetMiscSettings
().
GetEnableATToolSupport
()
)
{
sal_B
ool
bQuitApp
;
b
ool
bQuitApp
;
if
(
!
InitAccessBridge
(
true
,
bQuitApp
)
)
if
(
bQuitApp
)
return
EXIT_FAILURE
;
...
...
vcl/inc/svdata.hxx
Dosyayı görüntüle @
0b7e226e
...
...
@@ -381,7 +381,7 @@ extern VCL_PLUGIN_PUBLIC ImplSVData* pImplSVData;
inline
VCL_PLUGIN_PUBLIC
ImplSVData
*
ImplGetSVData
()
{
return
pImplSVData
;
}
VCL_PLUGIN_PUBLIC
void
ImplHideSplash
();
bool
ImplInitAccessBridge
(
sal_Bool
bAllowCancel
,
sal_B
ool
&
rCancelled
);
bool
ImplInitAccessBridge
(
bool
bAllowCancel
,
b
ool
&
rCancelled
);
FieldUnitStringList
*
ImplGetFieldUnits
();
FieldUnitStringList
*
ImplGetCleanedFieldUnits
();
...
...
vcl/inc/vcl/svapp.hxx
Dosyayı görüntüle @
0b7e226e
...
...
@@ -554,7 +554,7 @@ VCL_DLLPUBLIC Application* GetpApp();
VCL_DLLPUBLIC
sal_Bool
InitVCL
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>
&
);
VCL_DLLPUBLIC
void
DeInitVCL
();
VCL_DLLPUBLIC
sal_Bool
InitAccessBridge
(
sal_Bool
bAllowCancel
,
sal_B
ool
&
rCancelled
);
VCL_DLLPUBLIC
bool
InitAccessBridge
(
bool
bAllowCancel
,
b
ool
&
rCancelled
);
// only allowed to call, if no thread is running. You must call JoinMainLoopThread to free all memory.
VCL_DLLPUBLIC
void
CreateMainLoopThread
(
oslWorkerFunction
pWorker
,
void
*
pThreadData
);
...
...
vcl/source/app/svapp.cxx
Dosyayı görüntüle @
0b7e226e
...
...
@@ -1763,9 +1763,9 @@ void Application::AddToRecentDocumentList(const rtl::OUString& rFileUrl, const r
pSVData
->
mpDefInst
->
AddToRecentDocumentList
(
rFileUrl
,
rMimeType
);
}
sal_Bool
InitAccessBridge
(
sal_Bool
bShowCancel
,
sal_B
ool
&
rCancelled
)
bool
InitAccessBridge
(
bool
bShowCancel
,
b
ool
&
rCancelled
)
{
sal_B
ool
bRet
=
true
;
b
ool
bRet
=
true
;
// Disable Java bridge on UNIX
#if defined UNX
...
...
vcl/source/app/svdata.cxx
Dosyayı görüntüle @
0b7e226e
...
...
@@ -327,9 +327,9 @@ com::sun::star::uno::Any AccessBridgeCurrentContext::getValueByName( const rtl::
}
bool
ImplInitAccessBridge
(
sal_Bool
bAllowCancel
,
sal_B
ool
&
rCancelled
)
bool
ImplInitAccessBridge
(
bool
bAllowCancel
,
b
ool
&
rCancelled
)
{
rCancelled
=
sal_F
alse
;
rCancelled
=
f
alse
;
bool
bErrorMessage
=
true
;
...
...
@@ -411,7 +411,7 @@ bool ImplInitAccessBridge(sal_Bool bAllowCancel, sal_Bool &rCancelled)
// Do not change the setting in case the user chooses to cancel
if
(
SALSYSTEM_SHOWNATIVEMSGBOX_BTN_CANCEL
==
ret
)
rCancelled
=
sal_T
rue
;
rCancelled
=
t
rue
;
}
return
false
;
...
...
@@ -434,7 +434,7 @@ bool ImplInitAccessBridge(sal_Bool bAllowCancel, sal_Bool &rCancelled)
// Do not change the setting in case the user chooses to cancel
if
(
SALSYSTEM_SHOWNATIVEMSGBOX_BTN_CANCEL
==
ret
)
rCancelled
=
sal_T
rue
;
rCancelled
=
t
rue
;
}
return
false
;
...
...
@@ -457,7 +457,7 @@ bool ImplInitAccessBridge(sal_Bool bAllowCancel, sal_Bool &rCancelled)
// Do not change the setting in case the user chooses to cancel
if
(
SALSYSTEM_SHOWNATIVEMSGBOX_BTN_CANCEL
==
ret
)
rCancelled
=
sal_T
rue
;
rCancelled
=
t
rue
;
}
return
false
;
...
...
@@ -480,7 +480,7 @@ bool ImplInitAccessBridge(sal_Bool bAllowCancel, sal_Bool &rCancelled)
// Do not change the setting in case the user chooses to cancel
if
(
SALSYSTEM_SHOWNATIVEMSGBOX_BTN_CANCEL
==
ret
)
rCancelled
=
sal_T
rue
;
rCancelled
=
t
rue
;
}
return
false
;
...
...
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