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
6220ed4e
Kaydet (Commit)
6220ed4e
authored
Mar 07, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: update list
üst
9656a154
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
54 deletions
+0
-54
fdo36036-1.lwp
lotuswordpro/qa/cppunit/data/pass/fdo36036-1.lwp
+0
-0
unusedcode.easy
unusedcode.easy
+0
-2
strhelper.hxx
vcl/inc/vcl/strhelper.hxx
+0
-1
strhelper.cxx
vcl/source/helper/strhelper.cxx
+0
-51
No files found.
lotuswordpro/qa/cppunit/data/pass/
A14
.lwp
→
lotuswordpro/qa/cppunit/data/pass/
fdo36036-1
.lwp
Dosyayı görüntüle @
6220ed4e
File moved
unusedcode.easy
Dosyayı görüntüle @
6220ed4e
...
...
@@ -982,8 +982,6 @@ oox::xls::CellBlock::CellBlock(oox::xls::WorksheetHelper const&, oox::ValueRange
oox::xls::CellBlock::isBefore(oox::ValueRange const&) const
oox::xls::CellBlock::isExpandable(oox::ValueRange const&) const
oox::xls::CellBlock::startNextRow()
pdfi::createOdfEmitter(com::sun::star::uno::Reference<com::sun::star::io::XOutputStream> const&)
psp::GetCommandLineTokenCount(rtl::OString const&)
psp::PrinterGfx::DrawBitmap(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterBmp const&)
psp::PrinterGfx::DrawMask(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterColor&)
psp::PrinterGfx::GetGlyphBoundRect(unsigned short, Rectangle&)
...
...
vcl/inc/vcl/strhelper.hxx
Dosyayı görüntüle @
6220ed4e
...
...
@@ -44,7 +44,6 @@ namespace psp
// contents
VCL_DLLPUBLIC
int
GetCommandLineTokenCount
(
const
rtl
::
OUString
&
);
VCL_DLLPUBLIC
int
GetCommandLineTokenCount
(
const
rtl
::
OString
&
);
// returns number of tokens (zero if empty or whitespace only)
VCL_DLLPUBLIC
String
WhitespaceToSpace
(
const
String
&
,
sal_Bool
bProtect
=
sal_True
);
...
...
vcl/source/helper/strhelper.cxx
Dosyayı görüntüle @
6220ed4e
...
...
@@ -271,57 +271,6 @@ int GetCommandLineTokenCount(const rtl::OUString& rLine)
return
nTokenCount
;
}
int
GetCommandLineTokenCount
(
const
rtl
::
OString
&
rLine
)
{
if
(
rLine
.
isEmpty
())
return
0
;
int
nTokenCount
=
0
;
const
char
*
pRun
=
rLine
.
getStr
();
while
(
*
pRun
)
{
while
(
*
pRun
&&
isSpace
(
*
pRun
)
)
pRun
++
;
if
(
!
*
pRun
)
break
;
while
(
*
pRun
&&
!
isSpace
(
*
pRun
)
)
{
if
(
*
pRun
==
'\\'
)
{
// escapement
pRun
++
;
if
(
*
pRun
)
pRun
++
;
}
else
if
(
*
pRun
==
'`'
)
{
do
pRun
++
;
while
(
*
pRun
&&
*
pRun
!=
'`'
);
if
(
*
pRun
)
pRun
++
;
}
else
if
(
*
pRun
==
'\''
)
{
do
pRun
++
;
while
(
*
pRun
&&
*
pRun
!=
'\''
);
if
(
*
pRun
)
pRun
++
;
}
else
if
(
*
pRun
==
'"'
)
{
do
pRun
++
;
while
(
*
pRun
&&
*
pRun
!=
'"'
);
if
(
*
pRun
)
pRun
++
;
}
else
pRun
++
;
}
nTokenCount
++
;
}
return
nTokenCount
;
}
String
WhitespaceToSpace
(
const
String
&
rLine
,
sal_Bool
bProtect
)
{
int
nLen
=
rLine
.
Len
();
...
...
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