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
226dd312
Kaydet (Commit)
226dd312
authored
Ara 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
extensions: Use appropriate OUString functions on string constants
Change-Id: I4f117b3339753af254768724c38167f3595fbe69
üst
9f806fca
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
unoautopilot.inl
extensions/source/dbpilots/unoautopilot.inl
+1
-1
propcontroller.cxx
extensions/source/propctrlr/propcontroller.cxx
+3
-3
stringrepresentation.cxx
extensions/source/propctrlr/stringrepresentation.cxx
+1
-2
updatehdl.cxx
extensions/source/update/check/updatehdl.cxx
+1
-1
No files found.
extensions/source/dbpilots/unoautopilot.inl
Dosyayı görüntüle @
226dd312
...
...
@@ -107,7 +107,7 @@ void OUnoAutoPilot<TYPE, SERVICEINFO>::implInitialize(const com::sun::star::uno:
{
::com::sun::star::beans::PropertyValue aArgument;
if (_rValue >>= aArgument)
if (aArgument.Name
.equals("ObjectModel")
)
if (aArgument.Name
== "ObjectModel"
)
{
aArgument.Value >>= m_xObjectModel;
return;
...
...
extensions/source/propctrlr/propcontroller.cxx
Dosyayı görüntüle @
226dd312
...
...
@@ -650,7 +650,7 @@ namespace pcr
return
;
OUString
sOldSelection
=
m_sPageSelection
;
m_sPageSelection
=
""
;
m_sPageSelection
.
clear
()
;
const
sal_uInt16
nCurrentPage
=
m_pView
->
getActivaPage
();
if
(
(
sal_uInt16
)
-
1
!=
nCurrentPage
)
...
...
@@ -1373,7 +1373,7 @@ namespace pcr
OUString
sPlcHolder
=
PcrRes
(
RID_EMBED_IMAGE_PLACEHOLDER
).
toString
();
bool
bIsPlaceHolderValue
=
false
;
if
(
rName
.
equals
(
PROPERTY_IMAGE_URL
)
)
if
(
rName
==
PROPERTY_IMAGE_URL
)
{
// if the prop value is the PlaceHolder
// can ignore it
...
...
@@ -1421,7 +1421,7 @@ namespace pcr
OSL_FAIL
(
"OPropertyBrowserController::Commit : caught an exception !"
);
}
m_sCommittingProperty
=
""
;
m_sCommittingProperty
.
clear
()
;
}
...
...
extensions/source/propctrlr/stringrepresentation.cxx
Dosyayı görüntüle @
226dd312
...
...
@@ -626,8 +626,7 @@ OUString SAL_CALL _getImplementationName() {
uno
::
Sequence
<
OUString
>
SAL_CALL
_getSupportedServiceNames
()
{
uno
::
Sequence
<
OUString
>
s
(
1
);
s
[
0
]
=
OUString
(
"com.sun.star.inspection.StringRepresentation"
);
s
[
0
]
=
"com.sun.star.inspection.StringRepresentation"
;
return
s
;
}
...
...
extensions/source/update/check/updatehdl.cxx
Dosyayı görüntüle @
226dd312
...
...
@@ -320,7 +320,7 @@ void SAL_CALL UpdateHandler::actionPerformed( awt::ActionEvent const & rEvent )
}
}
if
(
rEvent
.
ActionCommand
.
equals
(
COMMAND_CLOSE
)
)
if
(
rEvent
.
ActionCommand
==
COMMAND_CLOSE
)
{
if
(
(
mnLastCtrlState
&
(
1
<<
CLOSE_BUTTON
)
)
==
(
1
<<
CLOSE_BUTTON
)
)
eButton
=
CLOSE_BUTTON
;
...
...
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