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
36fe72f9
Kaydet (Commit)
36fe72f9
authored
Agu 31, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I69c2c27af718b1d3ff35348a69d8b57914e5ae82
üst
6afc1202
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
11 deletions
+11
-11
printaccessoryview.mm
vcl/osx/printaccessoryview.mm
+1
-1
throbber.cxx
vcl/source/control/throbber.cxx
+4
-4
print3.cxx
vcl/source/gdi/print3.cxx
+2
-2
printdlg.cxx
vcl/source/window/printdlg.cxx
+1
-1
window.cxx
vcl/source/window/window.cxx
+1
-1
svpclient.cxx
vcl/workben/svpclient.cxx
+1
-1
svptest.cxx
vcl/workben/svptest.cxx
+1
-1
No files found.
vcl/osx/printaccessoryview.mm
Dosyayı görüntüle @
36fe72f9
...
...
@@ -367,7 +367,7 @@ class ControllerProperties
// add a label
sal_Int32 nPages = mpController->getFilteredPageCount();
rtl::OUStringBuffer aBuf( 16 );
aBuf.append
Ascii
( "/ " );
aBuf.append( "/ " );
aBuf.append( rtl::OUString::number( nPages ) );
NSString* pText = CreateNSString( aBuf.makeStringAndClear() );
...
...
vcl/source/control/throbber.cxx
Dosyayı görüntüle @
36fe72f9
...
...
@@ -225,13 +225,13 @@ void Throbber::setImageList( const Sequence< Reference< XGraphic > >& rImageList
for
(
size_t
i
=
0
;
i
<
nImageCounts
[
index
];
++
i
)
{
OUStringBuffer
aURL
;
aURL
.
append
Ascii
(
"private:graphicrepository/vcl/res/spinner-"
);
aURL
.
append
(
"private:graphicrepository/vcl/res/spinner-"
);
aURL
.
appendAscii
(
pResolutions
[
index
]
);
aURL
.
append
Ascii
(
"-"
);
aURL
.
append
(
"-"
);
if
(
i
<
9
)
aURL
.
append
Ascii
(
"0"
);
aURL
.
append
(
"0"
);
aURL
.
append
(
sal_Int32
(
i
+
1
)
);
aURL
.
append
Ascii
(
".png"
);
aURL
.
append
(
".png"
);
aImageURLs
.
push_back
(
aURL
.
makeStringAndClear
()
);
}
...
...
vcl/source/gdi/print3.cxx
Dosyayı görüntüle @
36fe72f9
...
...
@@ -380,10 +380,10 @@ bool Printer::PreparePrintJob(std::shared_ptr<PrinterController> xController,
if
(
nPages
>
0
)
{
OUStringBuffer
aBuf
(
32
);
aBuf
.
append
Ascii
(
"1"
);
aBuf
.
append
(
"1"
);
if
(
nPages
>
1
)
{
aBuf
.
append
Ascii
(
"-"
);
aBuf
.
append
(
"-"
);
aBuf
.
append
(
nPages
);
}
xController
->
setValue
(
OUString
(
"PageRange"
),
makeAny
(
aBuf
.
makeStringAndClear
()));
...
...
vcl/source/window/printdlg.cxx
Dosyayı görüntüle @
36fe72f9
...
...
@@ -247,7 +247,7 @@ void PrintDialog::PrintPreviewWindow::setPreview( const GDIMetaFile& i_rNewPrevi
aBuf
.
appendAscii
(
eUnit
==
MAP_MM
?
"mm"
:
"in"
);
if
(
!
i_rPaperName
.
isEmpty
()
)
{
aBuf
.
append
Ascii
(
" ("
);
aBuf
.
append
(
" ("
);
aBuf
.
append
(
i_rPaperName
);
aBuf
.
append
(
')'
);
}
...
...
vcl/source/window/window.cxx
Dosyayı görüntüle @
36fe72f9
...
...
@@ -3303,7 +3303,7 @@ const OUString& Window::GetHelpText() const
{
OUStringBuffer
aTxt
(
64
+
mpWindowImpl
->
maHelpText
.
getLength
()
);
aTxt
.
append
(
mpWindowImpl
->
maHelpText
);
aTxt
.
append
Ascii
(
"
\n
------------------
\n
"
);
aTxt
.
append
(
"
\n
------------------
\n
"
);
aTxt
.
append
(
OUString
(
aStrHelpId
)
);
mpWindowImpl
->
maHelpText
=
aTxt
.
makeStringAndClear
();
}
...
...
vcl/workben/svpclient.cxx
Dosyayı görüntüle @
36fe72f9
...
...
@@ -187,7 +187,7 @@ void MyWin::parseList( const OString& rList )
{
OUStringBuffer
aNewElement
(
64
);
aNewElement
.
append
(
aElementType
);
aNewElement
.
append
Ascii
(
": "
);
aNewElement
.
append
(
": "
);
aNewElement
.
append
(
OStringToOUString
(
aLine
,
RTL_TEXTENCODING_ASCII_US
)
);
m_aSvpBitmaps
->
InsertEntry
(
aNewElement
.
makeStringAndClear
()
);
}
...
...
vcl/workben/svptest.cxx
Dosyayı görüntüle @
36fe72f9
...
...
@@ -269,7 +269,7 @@ void MyWin::Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect)
OUStringBuffer
aPrintText
(
1024
);
long
nMaxWidth
=
0
;
aPrintText
.
append
Ascii
(
"SVP test program"
);
aPrintText
.
append
(
"SVP test program"
);
rRenderContext
.
DrawText
(
Rectangle
(
Point
((
aPaperSize
.
Width
()
-
4000
)
/
2
,
2000
),
Size
(
aPaperSize
.
Width
()
-
2100
-
nMaxWidth
,
aPaperSize
.
Height
()
-
4000
)),
...
...
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