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
4129130c
Kaydet (Commit)
4129130c
authored
Haz 07, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
XubString->OUString
Change-Id: I9404ef0d53a74e09a0db9781d004fcd0c573dd78
üst
41660fee
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
19 deletions
+19
-19
ControlHelper.hxx
formula/source/ui/dlg/ControlHelper.hxx
+8
-8
funcutl.cxx
formula/source/ui/dlg/funcutl.cxx
+8
-8
funcutl.hxx
include/formula/funcutl.hxx
+1
-1
prnsetup.hxx
include/svtools/prnsetup.hxx
+1
-1
prnsetup.cxx
svtools/source/dialogs/prnsetup.cxx
+1
-1
No files found.
formula/source/ui/dlg/ControlHelper.hxx
Dosyayı görüntüle @
4129130c
...
@@ -31,13 +31,13 @@ class ValWnd : public Window
...
@@ -31,13 +31,13 @@ class ValWnd : public Window
public
:
public
:
ValWnd
(
Window
*
pParent
,
const
ResId
&
rId
);
ValWnd
(
Window
*
pParent
,
const
ResId
&
rId
);
void
SetValue
(
const
String
&
rStrVal
);
void
SetValue
(
const
OU
String
&
rStrVal
);
protected
:
protected
:
virtual
void
Paint
(
const
Rectangle
&
rRect
);
virtual
void
Paint
(
const
Rectangle
&
rRect
);
private
:
private
:
String
aStrValue
;
OUString
aStrValue
;
Rectangle
aRectOut
;
Rectangle
aRectOut
;
};
};
...
@@ -142,15 +142,15 @@ public:
...
@@ -142,15 +142,15 @@ public:
ArgEdit
*
pedArg
,
ArgEdit
*
pedArg
,
RefButton
*
prefBtn
);
RefButton
*
prefBtn
);
void
SetArgName
(
const
String
&
aArg
);
void
SetArgName
(
const
OU
String
&
aArg
);
String
GetArgName
();
OUString
GetArgName
();
void
SetArgNameFont
(
const
Font
&
);
void
SetArgNameFont
(
const
Font
&
);
void
SetArgVal
(
const
String
&
aVal
);
void
SetArgVal
(
const
OU
String
&
aVal
);
String
GetArgVal
();
OUString
GetArgVal
();
void
SetArgSelection
(
const
Selection
&
rSel
);
void
SetArgSelection
(
const
Selection
&
rSel
);
void
ReplaceSelOfArg
(
const
String
&
rStr
);
void
ReplaceSelOfArg
(
const
OUString
&
rStr
);
ArgEdit
*
GetArgEdPtr
()
{
return
pEdArg
;}
ArgEdit
*
GetArgEdPtr
()
{
return
pEdArg
;}
...
...
formula/source/ui/dlg/funcutl.cxx
Dosyayı görüntüle @
4129130c
...
@@ -72,7 +72,7 @@ void ValWnd::Paint( const Rectangle& )
...
@@ -72,7 +72,7 @@ void ValWnd::Paint( const Rectangle& )
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
void
ValWnd
::
SetValue
(
const
String
&
rStrVal
)
void
ValWnd
::
SetValue
(
const
OU
String
&
rStrVal
)
{
{
if
(
aStrValue
!=
rStrVal
)
if
(
aStrValue
!=
rStrVal
)
{
{
...
@@ -265,7 +265,7 @@ void ArgInput::InitArgInput(FixedText* pftArg,
...
@@ -265,7 +265,7 @@ void ArgInput::InitArgInput(FixedText* pftArg,
#* Output: ---
#* Output: ---
#*
#*
#************************************************************************/
#************************************************************************/
void
ArgInput
::
SetArgName
(
const
String
&
aArg
)
void
ArgInput
::
SetArgName
(
const
OU
String
&
aArg
)
{
{
if
(
pFtArg
!=
NULL
)
pFtArg
->
SetText
(
aArg
);
if
(
pFtArg
!=
NULL
)
pFtArg
->
SetText
(
aArg
);
}
}
...
@@ -283,7 +283,7 @@ void ArgInput::SetArgName(const String &aArg)
...
@@ -283,7 +283,7 @@ void ArgInput::SetArgName(const String &aArg)
#* Output: ---
#* Output: ---
#*
#*
#************************************************************************/
#************************************************************************/
String
ArgInput
::
GetArgName
()
OU
String
ArgInput
::
GetArgName
()
{
{
String
aPrivArgName
;
String
aPrivArgName
;
if
(
pFtArg
!=
NULL
)
if
(
pFtArg
!=
NULL
)
...
@@ -342,11 +342,11 @@ void ArgInput::SetArgSelection (const Selection& rSel )
...
@@ -342,11 +342,11 @@ void ArgInput::SetArgSelection (const Selection& rSel )
#* Output: ---
#* Output: ---
#*
#*
#************************************************************************/
#************************************************************************/
void
ArgInput
::
SetArgVal
(
const
String
&
a
Val
)
void
ArgInput
::
SetArgVal
(
const
OUString
&
r
Val
)
{
{
if
(
pEdArg
!=
NULL
)
if
(
pEdArg
!=
NULL
)
{
{
pEdArg
->
SetRefString
(
aVal
);
pEdArg
->
SetRefString
(
rVal
);
}
}
}
}
...
@@ -363,9 +363,9 @@ void ArgInput::SetArgVal(const String &aVal)
...
@@ -363,9 +363,9 @@ void ArgInput::SetArgVal(const String &aVal)
#* Output: String
#* Output: String
#*
#*
#************************************************************************/
#************************************************************************/
String
ArgInput
::
GetArgVal
()
OU
String
ArgInput
::
GetArgVal
()
{
{
String
aResult
;
OU
String
aResult
;
if
(
pEdArg
!=
NULL
)
if
(
pEdArg
!=
NULL
)
{
{
aResult
=
pEdArg
->
GetText
();
aResult
=
pEdArg
->
GetText
();
...
@@ -877,7 +877,7 @@ RefEdit::~RefEdit()
...
@@ -877,7 +877,7 @@ RefEdit::~RefEdit()
aTimer
.
Stop
();
aTimer
.
Stop
();
}
}
void
RefEdit
::
SetRefString
(
const
Xub
String
&
rStr
)
void
RefEdit
::
SetRefString
(
const
OU
String
&
rStr
)
{
{
Edit
::
SetText
(
rStr
);
Edit
::
SetText
(
rStr
);
}
}
...
...
include/formula/funcutl.hxx
Dosyayı görüntüle @
4129130c
...
@@ -50,7 +50,7 @@ public:
...
@@ -50,7 +50,7 @@ public:
WinBits
nStyle
=
WB_BORDER
);
WinBits
nStyle
=
WB_BORDER
);
virtual
~
RefEdit
();
virtual
~
RefEdit
();
void
SetRefString
(
const
Xub
String
&
rStr
);
void
SetRefString
(
const
OU
String
&
rStr
);
/**
/**
* Flag reference valid or invalid, which in turn changes the visual
* Flag reference valid or invalid, which in turn changes the visual
...
...
include/svtools/prnsetup.hxx
Dosyayı görüntüle @
4129130c
...
@@ -86,7 +86,7 @@ Printer* ImplPrnDlgListBoxSelect( ListBox* pBox, PushButton* pPropBtn,
...
@@ -86,7 +86,7 @@ Printer* ImplPrnDlgListBoxSelect( ListBox* pBox, PushButton* pPropBtn,
Printer
*
pPrinter
,
Printer
*
pTempPrinter
);
Printer
*
pPrinter
,
Printer
*
pTempPrinter
);
Printer
*
ImplPrnDlgUpdatePrinter
(
Printer
*
pPrinter
,
Printer
*
pTempPrinter
);
Printer
*
ImplPrnDlgUpdatePrinter
(
Printer
*
pPrinter
,
Printer
*
pTempPrinter
);
void
ImplPrnDlgUpdateQueueInfo
(
ListBox
*
pBox
,
QueueInfo
&
rInfo
);
void
ImplPrnDlgUpdateQueueInfo
(
ListBox
*
pBox
,
QueueInfo
&
rInfo
);
Xub
String
ImplPrnDlgGetStatusText
(
const
QueueInfo
&
rInfo
);
OU
String
ImplPrnDlgGetStatusText
(
const
QueueInfo
&
rInfo
);
#endif // _SV_PRNSETUP_HXX_
#endif // _SV_PRNSETUP_HXX_
...
...
svtools/source/dialogs/prnsetup.cxx
Dosyayı görüntüle @
4129130c
...
@@ -139,7 +139,7 @@ static void ImplPrnDlgAddResString( XubString& rStr, sal_uInt16 nResId )
...
@@ -139,7 +139,7 @@ static void ImplPrnDlgAddResString( XubString& rStr, sal_uInt16 nResId )
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
Xub
String
ImplPrnDlgGetStatusText
(
const
QueueInfo
&
rInfo
)
OU
String
ImplPrnDlgGetStatusText
(
const
QueueInfo
&
rInfo
)
{
{
XubString
aStr
;
XubString
aStr
;
sal_uLong
nStatus
=
rInfo
.
GetStatus
();
sal_uLong
nStatus
=
rInfo
.
GetStatus
();
...
...
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