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
1322c224
Kaydet (Commit)
1322c224
authored
Ara 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
desktop: Use appropriate OUString functions on string constants
Change-Id: Ie35b3ab2695d9bbfc221b63b6913e21386344a33
üst
17fe6b54
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
16 additions
and
17 deletions
+16
-17
dp_gui_extlistbox.cxx
desktop/source/deployment/gui/dp_gui_extlistbox.cxx
+1
-1
dp_gui_service.cxx
desktop/source/deployment/gui/dp_gui_service.cxx
+1
-1
lockfile.hxx
desktop/source/deployment/inc/lockfile.hxx
+0
-1
lockfile.cxx
desktop/source/deployment/misc/lockfile.cxx
+1
-1
dp_component.cxx
...top/source/deployment/registry/component/dp_component.cxx
+1
-1
dp_script.cxx
desktop/source/deployment/registry/script/dp_script.cxx
+2
-2
migration.cxx
desktop/source/migration/migration.cxx
+3
-3
unopkg_app.cxx
desktop/source/pkgchk/unopkg/unopkg_app.cxx
+3
-3
unopkg_cmdenv.cxx
desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx
+2
-2
unopkg_misc.cxx
desktop/source/pkgchk/unopkg/unopkg_misc.cxx
+1
-1
splash.cxx
desktop/source/splash/splash.cxx
+1
-1
No files found.
desktop/source/deployment/gui/dp_gui_extlistbox.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -1073,7 +1073,7 @@ void ExtensionBox_Impl::updateEntry( const uno::Reference< deployment::XPackage
if
(
eState
==
AMBIGUOUS
)
(
*
iIndex
)
->
m_sErrorText
=
DialogHelper
::
getResourceString
(
RID_STR_ERROR_UNKNOWN_STATUS
);
else
if
(
!
(
*
iIndex
)
->
m_bMissingLic
)
(
*
iIndex
)
->
m_sErrorText
=
""
;
(
*
iIndex
)
->
m_sErrorText
.
clear
()
;
if
(
IsReallyVisible
()
)
Invalidate
();
...
...
desktop/source/deployment/gui/dp_gui_service.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -242,7 +242,7 @@ void ServiceImpl::startExecuteModal(
Application
::
SetSettings
(
as
);
Application
::
SetDisplayName
(
utl
::
ConfigManager
::
getProductName
()
+
OUString
(
" "
)
+
" "
+
utl
::
ConfigManager
::
getProductVersion
());
ExtensionCmdQueue
::
syncRepositories
(
m_xComponentContext
);
}
...
...
desktop/source/deployment/inc/lockfile.hxx
Dosyayı görüntüle @
1322c224
...
...
@@ -41,7 +41,6 @@
#include "dp_misc_api.hxx"
#define LOCKFILE_SUFFIX OUString( "/.lock" )
#define LOCKFILE_GROUP OString( "Lockdata" )
#define LOCKFILE_USERKEY OString( "User" )
#define LOCKFILE_HOSTKEY OString( "Host" )
...
...
desktop/source/deployment/misc/lockfile.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -79,7 +79,7 @@ namespace desktop {
// build the file-url to use for the lock
OUString
aUserPath
;
utl
::
Bootstrap
::
locateUserInstallation
(
aUserPath
);
m_aLockname
=
aUserPath
+
LOCKFILE_SUFFIX
;
m_aLockname
=
aUserPath
+
"/.lock"
;
// generate ID
const
int
nIdBytes
=
16
;
...
...
desktop/source/deployment/registry/component/dp_component.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -511,7 +511,7 @@ BackendImpl::BackendImpl(
m_xDynComponentTypeInfo
(
new
Package
::
TypeInfo
(
"application/vnd.sun.star.uno-component;type=native;platform="
+
getPlatformString
(),
OUString
(
"*"
)
+
OUString
(
SAL_DLLEXTENSION
)
,
"*"
SAL_DLLEXTENSION
,
getResourceString
(
RID_STR_DYN_COMPONENT
),
RID_IMG_COMPONENT
)
),
m_xJavaComponentTypeInfo
(
new
Package
::
TypeInfo
(
...
...
desktop/source/deployment/registry/script/dp_script.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -250,7 +250,7 @@ Reference<deployment::XPackage> BackendImpl::bindPackage_(
OUString
dialogURL
(
makeURL
(
url
,
"dialog.xlb"
)
);
if
(
!
create_ucb_content
(
0
,
dialogURL
,
xCmdEnv
,
false
/* no throw */
))
{
dialogURL
=
""
;
dialogURL
.
clear
()
;
}
if
(
subType
.
equalsIgnoreAsciiCase
(
"vnd.sun.star.basic-library"
))
...
...
@@ -258,7 +258,7 @@ Reference<deployment::XPackage> BackendImpl::bindPackage_(
OUString
scriptURL
(
makeURL
(
url
,
"script.xlb"
));
if
(
!
create_ucb_content
(
0
,
scriptURL
,
xCmdEnv
,
false
/* no throw */
))
{
scriptURL
=
""
;
scriptURL
.
clear
()
;
}
return
new
PackageImpl
(
...
...
desktop/source/migration/migration.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -1238,11 +1238,11 @@ void MigrationImpl::mergeOldToNewVersion(const uno::Reference< ui::XUIConfigurat
{
uno
::
Sequence
<
beans
::
PropertyValue
>
aPropSeq
(
3
);
aPropSeq
[
0
].
Name
=
OUString
(
ITEM_DESCRIPTOR_COMMANDURL
)
;
aPropSeq
[
0
].
Name
=
ITEM_DESCRIPTOR_COMMANDURL
;
aPropSeq
[
0
].
Value
<<=
it
->
m_sCommandURL
;
aPropSeq
[
1
].
Name
=
OUString
(
ITEM_DESCRIPTOR_LABEL
)
;
aPropSeq
[
1
].
Name
=
ITEM_DESCRIPTOR_LABEL
;
aPropSeq
[
1
].
Value
<<=
retrieveLabelFromCommand
(
it
->
m_sCommandURL
,
sModuleIdentifier
);
aPropSeq
[
2
].
Name
=
OUString
(
ITEM_DESCRIPTOR_CONTAINER
)
;
aPropSeq
[
2
].
Name
=
ITEM_DESCRIPTOR_CONTAINER
;
aPropSeq
[
2
].
Value
<<=
it
->
m_xPopupMenu
;
if
(
it
->
m_sPrevSibling
.
isEmpty
())
...
...
desktop/source/pkgchk/unopkg/unopkg_app.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -301,8 +301,8 @@ extern "C" DESKTOP_DLLPUBLIC int unopkg_main()
}
else
if
(
option_shared
)
{
dp_misc
::
writeConsoleError
(
OUString
(
"WARNING: explicit context given! "
)
+
"Ignoring option "
+
toString
(
info_shared
)
+
"!
\n
"
);
"WARNING: explicit context given! Ignoring option "
+
toString
(
info_shared
)
+
"!
\n
"
);
}
}
...
...
@@ -425,7 +425,7 @@ extern "C" DESKTOP_DLLPUBLIC int unopkg_main()
vec_packages
.
size
(),
false
);
dp_misc
::
writeConsole
(
OUString
(
"All deployed "
)
+
repository
+
" extensions:
\n\n
"
);
"All deployed "
+
repository
+
" extensions:
\n\n
"
);
}
else
{
...
...
desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -270,7 +270,7 @@ void CommandEnvironmentImpl::handle(
{
OUString
sMsg
(
ResId
(
RID_STR_UNSUPPORTED_PLATFORM
,
*
dp_gui
::
DeploymentGuiResMgr
::
get
()).
toString
());
sMsg
=
sMsg
.
replaceAll
(
"%Name"
,
platExc
.
package
->
getDisplayName
());
dp_misc
::
writeConsole
(
OUString
(
"
\n
"
)
+
sMsg
+
"
\n\n
"
);
dp_misc
::
writeConsole
(
"
\n
"
+
sMsg
+
"
\n\n
"
);
approve
=
true
;
}
else
{
...
...
@@ -290,7 +290,7 @@ void CommandEnvironmentImpl::handle(
if
(
abort
&&
m_option_verbose
&&
!
bLicenseException
)
{
OUString
msg
=
::
comphelper
::
anyToString
(
request
);
dp_misc
::
writeConsoleError
(
OUString
(
"
\n
ERROR: "
)
+
msg
+
"
\n
"
);
dp_misc
::
writeConsoleError
(
"
\n
ERROR: "
+
msg
+
"
\n
"
);
}
// select:
...
...
desktop/source/pkgchk/unopkg/unopkg_misc.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -152,7 +152,7 @@ bool readArgument(
{
OSL_ASSERT
(
pValue
!=
0
);
osl_getCommandArg
(
*
pIndex
,
&
pValue
->
pData
);
dp_misc
::
TRACE
(
OUString
(
__FILE__
)
+
": argument value: "
dp_misc
::
TRACE
(
__FILE__
": argument value: "
+
*
pValue
+
"
\n
"
);
++
(
*
pIndex
);
return
true
;
...
...
desktop/source/splash/splash.cxx
Dosyayı görüntüle @
1322c224
...
...
@@ -370,7 +370,7 @@ void SplashScreen::loadConfig()
// Determine full screen splash mode
_bFullScreenSplash
=
((
!
sFullScreenSplash
.
isEmpty
()
)
&&
(
!
sFullScreenSplash
.
equals
(
"0"
)
));
(
sFullScreenSplash
!=
"0"
));
// Try to retrieve the relative values for the progress bar. The current
// schema uses the screen ratio to retrieve the associated values.
...
...
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