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
597faa10
Kaydet (Commit)
597faa10
authored
Kas 09, 2010
tarafından
Kevin Hunter
Kaydeden (comit)
Thorsten Behrens
Kas 09, 2010
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
EasyHack: RTL macro converted from createFromAscii
üst
10bfc7d8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
parametricpolypolygon.cxx
canvas/source/tools/parametricpolypolygon.cxx
+3
-3
propertysethelper.cxx
canvas/source/tools/propertysethelper.cxx
+4
-4
verifyinput.cxx
canvas/source/tools/verifyinput.cxx
+0
-0
canvasdemo.cxx
canvas/workben/canvasdemo.cxx
+3
-3
No files found.
canvas/source/tools/parametricpolypolygon.cxx
Dosyayı görüntüle @
597faa10
...
@@ -54,9 +54,9 @@ namespace canvas
...
@@ -54,9 +54,9 @@ namespace canvas
uno
::
Sequence
<
rtl
::
OUString
>
ParametricPolyPolygon
::
getAvailableServiceNames
()
uno
::
Sequence
<
rtl
::
OUString
>
ParametricPolyPolygon
::
getAvailableServiceNames
()
{
{
uno
::
Sequence
<
rtl
::
OUString
>
aRet
(
3
);
uno
::
Sequence
<
rtl
::
OUString
>
aRet
(
3
);
aRet
[
0
]
=
rtl
::
OUString
::
createFromAscii
(
"LinearGradient"
);
aRet
[
0
]
=
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"LinearGradient"
)
);
aRet
[
1
]
=
rtl
::
OUString
::
createFromAscii
(
"EllipticalGradient"
);
aRet
[
1
]
=
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"EllipticalGradient"
)
);
aRet
[
2
]
=
rtl
::
OUString
::
createFromAscii
(
"RectangularGradient"
);
aRet
[
2
]
=
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"RectangularGradient"
)
);
return
aRet
;
return
aRet
;
}
}
...
...
canvas/source/tools/propertysethelper.cxx
Dosyayı görüntüle @
597faa10
...
@@ -40,9 +40,9 @@ namespace canvas
...
@@ -40,9 +40,9 @@ namespace canvas
void
throwUnknown
(
const
::
rtl
::
OUString
&
aPropertyName
)
void
throwUnknown
(
const
::
rtl
::
OUString
&
aPropertyName
)
{
{
throw
beans
::
UnknownPropertyException
(
throw
beans
::
UnknownPropertyException
(
::
rtl
::
OUString
::
createFromAscii
(
"PropertySetHelper: property "
)
+
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"PropertySetHelper: property "
)
)
+
aPropertyName
+
aPropertyName
+
::
rtl
::
OUString
::
createFromAscii
(
" not found."
),
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
" not found."
)
),
uno
::
Reference
<
uno
::
XInterface
>
()
uno
::
Reference
<
uno
::
XInterface
>
()
);
);
}
}
...
@@ -50,9 +50,9 @@ namespace canvas
...
@@ -50,9 +50,9 @@ namespace canvas
void
throwVeto
(
const
::
rtl
::
OUString
&
aPropertyName
)
void
throwVeto
(
const
::
rtl
::
OUString
&
aPropertyName
)
{
{
throw
beans
::
PropertyVetoException
(
throw
beans
::
PropertyVetoException
(
::
rtl
::
OUString
::
createFromAscii
(
"PropertySetHelper: property "
)
+
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"PropertySetHelper: property "
)
)
+
aPropertyName
+
aPropertyName
+
::
rtl
::
OUString
::
createFromAscii
(
" access was vetoed."
),
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
" access was vetoed."
)
),
uno
::
Reference
<
uno
::
XInterface
>
()
);
uno
::
Reference
<
uno
::
XInterface
>
()
);
}
}
...
...
canvas/source/tools/verifyinput.cxx
Dosyayı görüntüle @
597faa10
This diff is collapsed.
Click to expand it.
canvas/workben/canvasdemo.cxx
Dosyayı görüntüle @
597faa10
...
@@ -93,7 +93,7 @@ class TestWindow : public Dialog
...
@@ -93,7 +93,7 @@ class TestWindow : public Dialog
public
:
public
:
TestWindow
()
:
Dialog
(
(
Window
*
)
NULL
)
TestWindow
()
:
Dialog
(
(
Window
*
)
NULL
)
{
{
SetText
(
rtl
::
OUString
::
createFromAscii
(
"Canvas test"
)
);
SetText
(
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"Canvas test"
)
)
);
SetSizePixel
(
Size
(
600
,
450
)
);
SetSizePixel
(
Size
(
600
,
450
)
);
EnablePaint
(
true
);
EnablePaint
(
true
);
Show
();
Show
();
...
@@ -153,8 +153,8 @@ class DemoRenderer
...
@@ -153,8 +153,8 @@ class DemoRenderer
lang
::
Locale
aLocale
;
lang
::
Locale
aLocale
;
rendering
::
FontInfo
aFontInfo
;
rendering
::
FontInfo
aFontInfo
;
aFontInfo
.
FamilyName
=
::
rtl
::
OUString
::
createFromAscii
(
"Swiss"
);
aFontInfo
.
FamilyName
=
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"Swiss"
)
);
aFontInfo
.
StyleName
=
::
rtl
::
OUString
::
createFromAscii
(
"SansSerif"
);
aFontInfo
.
StyleName
=
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"SansSerif"
)
);
geometry
::
Matrix2D
aFontMatrix
(
1
,
0
,
geometry
::
Matrix2D
aFontMatrix
(
1
,
0
,
0
,
1
);
0
,
1
);
rendering
::
FontRequest
aFontRequest
(
aFontInfo
,
12.0
,
0.0
,
aLocale
);
rendering
::
FontRequest
aFontRequest
(
aFontInfo
,
12.0
,
0.0
,
aLocale
);
...
...
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