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
8f63d98e
Kaydet (Commit)
8f63d98e
authored
Mar 13, 2011
tarafından
Norbert Thiebaud
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix mis-merge in desktop
üst
3d386e3e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
11 deletions
+10
-11
app.hxx
desktop/inc/app.hxx
+1
-1
app.cxx
desktop/source/app/app.cxx
+6
-6
dispatchwatcher.cxx
desktop/source/app/dispatchwatcher.cxx
+1
-1
dp_gui.hrc
desktop/source/deployment/gui/dp_gui.hrc
+1
-1
dp_component.cxx
...top/source/deployment/registry/component/dp_component.cxx
+1
-2
No files found.
desktop/inc/app.hxx
Dosyayı görüntüle @
8f63d98e
...
@@ -63,7 +63,7 @@ class Desktop : public Application
...
@@ -63,7 +63,7 @@ class Desktop : public Application
{
{
friend
class
UserInstall
;
friend
class
UserInstall
;
void
doShutdown
();
int
doShutdown
();
public
:
public
:
enum
BootstrapError
enum
BootstrapError
...
...
desktop/source/app/app.cxx
Dosyayı görüntüle @
8f63d98e
...
@@ -654,7 +654,7 @@ throw()
...
@@ -654,7 +654,7 @@ throw()
//Also do not copy *.tmp files and *.tmp_ folders. This affects the files/folders
//Also do not copy *.tmp files and *.tmp_ folders. This affects the files/folders
//from the help and configuration backend
//from the help and configuration backend
if
(
IsDoc
&&
(
aFileName
.
equalsAscii
(
pLastSyncFileName
)
if
(
IsDoc
&&
(
aFileName
.
equalsAscii
(
pLastSyncFileName
)
||
bExcludeFiles
&&
isExcludedFileOrFolder
(
aFileName
)))
||
(
bExcludeFiles
&&
isExcludedFileOrFolder
(
aFileName
)
)))
bFilter
=
true
;
bFilter
=
true
;
else
if
(
!
IsDoc
&&
bExcludeFiles
&&
isExcludedFileOrFolder
(
aFileName
))
else
if
(
!
IsDoc
&&
bExcludeFiles
&&
isExcludedFileOrFolder
(
aFileName
))
bFilter
=
true
;
bFilter
=
true
;
...
@@ -1539,7 +1539,7 @@ struct ExecuteGlobals
...
@@ -1539,7 +1539,7 @@ struct ExecuteGlobals
static
ExecuteGlobals
*
pExecGlobals
=
NULL
;
static
ExecuteGlobals
*
pExecGlobals
=
NULL
;
void
Desktop
::
Main
()
int
Desktop
::
Main
()
{
{
pExecGlobals
=
new
ExecuteGlobals
();
pExecGlobals
=
new
ExecuteGlobals
();
...
@@ -1917,13 +1917,13 @@ void Desktop::Main()
...
@@ -1917,13 +1917,13 @@ void Desktop::Main()
}
}
// CAUTION: you do not necessarily get here e.g. on the Mac.
// CAUTION: you do not necessarily get here e.g. on the Mac.
// please put all deinitialization code into doShutdown
// please put all deinitialization code into doShutdown
doShutdown
();
return
doShutdown
();
}
}
void
Desktop
::
doShutdown
()
int
Desktop
::
doShutdown
()
{
{
if
(
!
pExecGlobals
)
if
(
!
pExecGlobals
)
return
;
return
EXIT_SUCCESS
;
if
(
pExecGlobals
->
bRestartRequested
)
if
(
pExecGlobals
->
bRestartRequested
)
SetRestartState
();
SetRestartState
();
...
@@ -2071,7 +2071,7 @@ sal_Bool Desktop::shouldLaunchQuickstart()
...
@@ -2071,7 +2071,7 @@ sal_Bool Desktop::shouldLaunchQuickstart()
const
SfxPoolItem
*
pItem
=
0
;
const
SfxPoolItem
*
pItem
=
0
;
SfxItemSet
aQLSet
(
SFX_APP
()
->
GetPool
(),
SID_ATTR_QUICKLAUNCHER
,
SID_ATTR_QUICKLAUNCHER
);
SfxItemSet
aQLSet
(
SFX_APP
()
->
GetPool
(),
SID_ATTR_QUICKLAUNCHER
,
SID_ATTR_QUICKLAUNCHER
);
SFX_APP
()
->
GetOptions
(
aQLSet
);
SFX_APP
()
->
GetOptions
(
aQLSet
);
SfxItemState
eState
=
aQLSet
.
GetItemState
(
SID_ATTR_QUICKLAUNCHER
,
FALSE
,
&
pItem
);
SfxItemState
eState
=
aQLSet
.
GetItemState
(
SID_ATTR_QUICKLAUNCHER
,
sal_False
,
&
pItem
);
if
(
SFX_ITEM_SET
==
eState
)
if
(
SFX_ITEM_SET
==
eState
)
bQuickstart
=
((
SfxBoolItem
*
)
pItem
)
->
GetValue
();
bQuickstart
=
((
SfxBoolItem
*
)
pItem
)
->
GetValue
();
}
}
...
...
desktop/source/app/dispatchwatcher.cxx
Dosyayı görüntüle @
8f63d98e
...
@@ -94,7 +94,7 @@ static String impl_GetFilterFromExt( OUString aUrl, SfxFilterFlags nFlags,
...
@@ -94,7 +94,7 @@ static String impl_GetFilterFromExt( OUString aUrl, SfxFilterFlags nFlags,
{
{
String
aFilter
;
String
aFilter
;
SfxMedium
*
pMedium
=
new
SfxMedium
(
aUrl
,
SfxMedium
*
pMedium
=
new
SfxMedium
(
aUrl
,
STREAM_STD_READ
,
FALSE
);
STREAM_STD_READ
,
sal_False
);
const
SfxFilter
*
pSfxFilter
=
NULL
;
const
SfxFilter
*
pSfxFilter
=
NULL
;
SfxFilterMatcher
aMatcher
;
SfxFilterMatcher
aMatcher
;
if
(
nFlags
==
SFX_FILTER_EXPORT
)
if
(
nFlags
==
SFX_FILTER_EXPORT
)
...
...
desktop/source/deployment/gui/dp_gui.hrc
Dosyayı görüntüle @
8f63d98e
...
@@ -105,7 +105,7 @@
...
@@ -105,7 +105,7 @@
#define RID_DLG_UPDATE_LINE 8
#define RID_DLG_UPDATE_LINE 8
#define RID_DLG_UPDATE_HELP 9
#define RID_DLG_UPDATE_HELP 9
#define RID_DLG_UPDATE_OK 10
#define RID_DLG_UPDATE_OK 10
#define RID_DLG_UPDATE_C
ANCEL
11
#define RID_DLG_UPDATE_C
LOSE
11
#define RID_DLG_UPDATE_NORMALALERT 12
#define RID_DLG_UPDATE_NORMALALERT 12
#define RID_DLG_UPDATE_ERROR 14
#define RID_DLG_UPDATE_ERROR 14
#define RID_DLG_UPDATE_NONE 15
#define RID_DLG_UPDATE_NONE 15
...
...
desktop/source/deployment/registry/component/dp_component.cxx
Dosyayı görüntüle @
8f63d98e
...
@@ -1885,7 +1885,7 @@ BackendImpl::OtherPlatformPackageImpl::processPackage_(
...
@@ -1885,7 +1885,7 @@ BackendImpl::OtherPlatformPackageImpl::processPackage_(
if
(
xServicesRDB
.
is
())
if
(
xServicesRDB
.
is
())
xServicesRDB
->
close
();
xServicesRDB
->
close
();
getMyBackend
()
->
deleteData
FromDb
(
aURL
);
getMyBackend
()
->
revokeEntry
FromDb
(
aURL
);
}
}
BackendImpl
*
BackendImpl
::
ComponentsPackageImpl
::
getMyBackend
()
const
BackendImpl
*
BackendImpl
::
ComponentsPackageImpl
::
getMyBackend
()
const
...
@@ -1978,7 +1978,6 @@ BackendImpl::ComponentsPackageImpl::ComponentsPackageImpl(
...
@@ -1978,7 +1978,6 @@ BackendImpl::ComponentsPackageImpl::ComponentsPackageImpl(
:
Package
(
myBackend
,
url
,
name
,
name
/* display-name */
,
:
Package
(
myBackend
,
url
,
name
,
name
/* display-name */
,
xPackageType
,
bRemoved
,
identifier
)
xPackageType
,
bRemoved
,
identifier
)
{}
{}
>>>>>>>
ooo
/
DEV300_m101
}
// anon namespace
}
// anon namespace
...
...
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