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
27a90591
Kaydet (Commit)
27a90591
authored
Şub 02, 2017
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sc: fix loplugin:stringconstant warnings
Change-Id: I6f9e77ed380baba0a46374292fb2a65d41e15e71
üst
162e185c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
15 deletions
+15
-15
appoptio.cxx
sc/source/core/tool/appoptio.cxx
+7
-7
docoptio.cxx
sc/source/core/tool/docoptio.cxx
+2
-2
unitconv.cxx
sc/source/core/tool/unitconv.cxx
+1
-1
viewopti.cxx
sc/source/core/tool/viewopti.cxx
+3
-3
csvruler.cxx
sc/source/ui/dbgui/csvruler.cxx
+2
-2
No files found.
sc/source/core/tool/appoptio.cxx
Dosyayı görüntüle @
27a90591
...
...
@@ -313,13 +313,13 @@ Sequence<OUString> ScAppCfg::GetCompatPropertyNames()
}
ScAppCfg
::
ScAppCfg
()
:
aLayoutItem
(
OUString
(
CFGPATH_LAYOUT
)
),
aInputItem
(
OUString
(
CFGPATH_INPUT
)
),
aRevisionItem
(
OUString
(
CFGPATH_REVISION
)
),
aContentItem
(
OUString
(
CFGPATH_CONTENT
)
),
aSortListItem
(
OUString
(
CFGPATH_SORTLIST
)
),
aMiscItem
(
OUString
(
CFGPATH_MISC
)
),
aCompatItem
(
OUString
(
CFGPATH_COMPAT
)
)
aLayoutItem
(
CFGPATH_LAYOUT
),
aInputItem
(
CFGPATH_INPUT
),
aRevisionItem
(
CFGPATH_REVISION
),
aContentItem
(
CFGPATH_CONTENT
),
aSortListItem
(
CFGPATH_SORTLIST
),
aMiscItem
(
CFGPATH_MISC
),
aCompatItem
(
CFGPATH_COMPAT
)
{
sal_Int32
nIntVal
=
0
;
...
...
sc/source/core/tool/docoptio.cxx
Dosyayı görüntüle @
27a90591
...
...
@@ -216,8 +216,8 @@ Sequence<OUString> ScDocCfg::GetLayoutPropertyNames()
}
ScDocCfg
::
ScDocCfg
()
:
aCalcItem
(
OUString
(
CFGPATH_CALC
)
),
aLayoutItem
(
OUString
(
CFGPATH_DOCLAYOUT
)
)
aCalcItem
(
CFGPATH_CALC
),
aLayoutItem
(
CFGPATH_DOCLAYOUT
)
{
sal_Int32
nIntVal
=
0
;
...
...
sc/source/core/tool/unitconv.cxx
Dosyayı görüntüle @
27a90591
...
...
@@ -60,7 +60,7 @@ ScUnitConverter::ScUnitConverter()
// read from configuration - "convert.ini" is no longer used
//TODO: config item as member to allow change of values
ScLinkConfigItem
aConfigItem
(
OUString
(
CFGPATH_UNIT
)
);
ScLinkConfigItem
aConfigItem
(
CFGPATH_UNIT
);
// empty node name -> use the config item's path itself
OUString
aEmptyString
;
...
...
sc/source/core/tool/viewopti.cxx
Dosyayı görüntüle @
27a90591
...
...
@@ -311,9 +311,9 @@ Sequence<OUString> ScViewCfg::GetGridPropertyNames()
}
ScViewCfg
::
ScViewCfg
()
:
aLayoutItem
(
OUString
(
CFGPATH_LAYOUT
)
),
aDisplayItem
(
OUString
(
CFGPATH_DISPLAY
)
),
aGridItem
(
OUString
(
CFGPATH_GRID
)
)
aLayoutItem
(
CFGPATH_LAYOUT
),
aDisplayItem
(
CFGPATH_DISPLAY
),
aGridItem
(
CFGPATH_GRID
)
{
sal_Int32
nIntVal
=
0
;
...
...
sc/source/ui/dbgui/csvruler.cxx
Dosyayı görüntüle @
27a90591
...
...
@@ -40,7 +40,7 @@ static void load_FixedWidthList(ScCsvSplits &rSplits)
Sequence
<
Any
>
aValues
;
const
Any
*
pProperties
;
Sequence
<
OUString
>
aNames
{
FIXED_WIDTH_LIST
};
ScLinkConfigItem
aItem
(
OUString
(
SEP_PATH
)
);
ScLinkConfigItem
aItem
(
SEP_PATH
);
aValues
=
aItem
.
GetProperties
(
aNames
);
pProperties
=
aValues
.
getConstArray
();
...
...
@@ -73,7 +73,7 @@ static void save_FixedWidthList(const ScCsvSplits& rSplits)
Sequence
<
Any
>
aValues
;
Any
*
pProperties
;
Sequence
<
OUString
>
aNames
{
FIXED_WIDTH_LIST
};
ScLinkConfigItem
aItem
(
OUString
(
SEP_PATH
)
);
ScLinkConfigItem
aItem
(
SEP_PATH
);
aValues
=
aItem
.
GetProperties
(
aNames
);
pProperties
=
aValues
.
getArray
();
...
...
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