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
a1387095
Kaydet (Commit)
a1387095
authored
Şub 28, 2012
tarafından
Takeshi Abe
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Drop comparison with empty rtl::OUString
üst
51af20c8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
mischelper.cxx
framework/source/fwi/helper/mischelper.cxx
+2
-2
util.cxx
jvmfwk/plugins/sunmajor/pluginlib/util.cxx
+1
-1
olmenu.cxx
sw/source/ui/lingu/olmenu.cxx
+1
-1
bc.cxx
ucb/source/ucp/file/bc.cxx
+1
-1
No files found.
framework/source/fwi/helper/mischelper.cxx
Dosyayı görüntüle @
a1387095
...
@@ -162,7 +162,7 @@ void FillLangItems( std::set< OUString > &rLangItems,
...
@@ -162,7 +162,7 @@ void FillLangItems( std::set< OUString > &rLangItems,
rLangItems
.
clear
();
rLangItems
.
clear
();
//1--add current language
//1--add current language
if
(
rCurLang
!=
OUString
()
&&
if
(
!
rCurLang
.
isEmpty
()
&&
LANGUAGE_DONTKNOW
!=
rLanguageTable
.
GetType
(
rCurLang
))
LANGUAGE_DONTKNOW
!=
rLanguageTable
.
GetType
(
rCurLang
))
rLangItems
.
insert
(
rCurLang
);
rLangItems
.
insert
(
rCurLang
);
...
@@ -195,7 +195,7 @@ void FillLangItems( std::set< OUString > &rLangItems,
...
@@ -195,7 +195,7 @@ void FillLangItems( std::set< OUString > &rLangItems,
}
}
//5--keyboard language
//5--keyboard language
if
(
rKeyboardLang
!=
OUString
()
)
if
(
!
rKeyboardLang
.
isEmpty
()
)
{
{
if
(
IsScriptTypeMatchingToLanguage
(
nScriptType
,
rLanguageTable
.
GetType
(
rKeyboardLang
)))
if
(
IsScriptTypeMatchingToLanguage
(
nScriptType
,
rLanguageTable
.
GetType
(
rKeyboardLang
)))
rLangItems
.
insert
(
rKeyboardLang
);
rLangItems
.
insert
(
rKeyboardLang
);
...
...
jvmfwk/plugins/sunmajor/pluginlib/util.cxx
Dosyayı görüntüle @
a1387095
...
@@ -1188,7 +1188,7 @@ void createJavaInfoDirScan(vector<rtl::Reference<VendorBase> >& vecInfos)
...
@@ -1188,7 +1188,7 @@ void createJavaInfoDirScan(vector<rtl::Reference<VendorBase> >& vecInfos)
{
{
OUString
usDir2
(
usDir1
+
arCollectDirs
[
j
]);
OUString
usDir2
(
usDir1
+
arCollectDirs
[
j
]);
// prevent that we scan the whole /usr, /usr/lib, etc directories
// prevent that we scan the whole /usr, /usr/lib, etc directories
if
(
arCollectDirs
[
j
]
!=
OUString
())
if
(
!
arCollectDirs
[
j
].
isEmpty
())
{
{
//usr/java/xxx
//usr/java/xxx
//Examin every subdirectory
//Examin every subdirectory
...
...
sw/source/ui/lingu/olmenu.cxx
Dosyayı görüntüle @
a1387095
...
@@ -225,7 +225,7 @@ void SwSpellPopup::fillLangPopupMenu(
...
@@ -225,7 +225,7 @@ void SwSpellPopup::fillLangPopupMenu(
OUString
aKeyboardLang
(
aSeq
[
2
]
);
OUString
aKeyboardLang
(
aSeq
[
2
]
);
OUString
aGuessedTextLang
(
aSeq
[
3
]
);
OUString
aGuessedTextLang
(
aSeq
[
3
]
);
if
(
aCurLang
!=
OUString
()
&&
if
(
!
aCurLang
.
isEmpty
()
&&
LANGUAGE_DONTKNOW
!=
aLanguageTable
.
GetType
(
aCurLang
))
LANGUAGE_DONTKNOW
!=
aLanguageTable
.
GetType
(
aCurLang
))
aLangItems
.
insert
(
aCurLang
);
aLangItems
.
insert
(
aCurLang
);
...
...
ucb/source/ucp/file/bc.cxx
Dosyayı görüntüle @
a1387095
...
@@ -603,7 +603,7 @@ BaseContent::addProperty(
...
@@ -603,7 +603,7 @@ BaseContent::addProperty(
lang
::
IllegalArgumentException
,
lang
::
IllegalArgumentException
,
RuntimeException
)
RuntimeException
)
{
{
if
(
(
m_nState
&
JustInserted
)
||
(
m_nState
&
Deleted
)
||
Name
==
rtl
::
OUString
()
)
if
(
(
m_nState
&
JustInserted
)
||
(
m_nState
&
Deleted
)
||
Name
.
isEmpty
()
)
{
{
throw
lang
::
IllegalArgumentException
(
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
OSL_LOG_PREFIX
)
),
uno
::
Reference
<
uno
::
XInterface
>
(),
0
);
throw
lang
::
IllegalArgumentException
(
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
OSL_LOG_PREFIX
)
),
uno
::
Reference
<
uno
::
XInterface
>
(),
0
);
}
}
...
...
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