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
ee0d567f
Kaydet (Commit)
ee0d567f
authored
Eyl 16, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert SVTOOLS module from String to OUString
Change-Id: I647e952769c79b95e11af778b07d64d3a6fbe226
üst
5eab9486
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
15 deletions
+17
-15
svtabbx.cxx
svtools/source/contnr/svtabbx.cxx
+7
-7
inettbc.cxx
svtools/source/control/inettbc.cxx
+1
-1
wizardmachine.cxx
svtools/source/dialogs/wizardmachine.cxx
+1
-1
ehdl.cxx
svtools/source/misc/ehdl.cxx
+3
-3
transfer.cxx
svtools/source/misc/transfer.cxx
+4
-2
genericunodialog.cxx
svtools/source/uno/genericunodialog.cxx
+1
-1
No files found.
svtools/source/contnr/svtabbx.cxx
Dosyayı görüntüle @
ee0d567f
...
...
@@ -1066,8 +1066,8 @@ OUString SvHeaderTabListBox::GetAccessibleObjectDescription( ::svt::AccessibleBr
if
(
_eType
==
::
svt
::
BBTYPE_TABLECELL
&&
_nPos
!=
-
1
)
{
const
String
sVar1
(
RTL_CONSTASCII_USTRINGPARAM
(
"%1"
)
);
const
String
sVar2
(
RTL_CONSTASCII_USTRINGPARAM
(
"%2"
)
);
const
OUString
sVar1
(
"%1"
);
const
OUString
sVar2
(
"%2"
);
sal_uInt16
nColumnCount
=
GetColumnCount
();
if
(
nColumnCount
>
0
)
...
...
@@ -1075,12 +1075,12 @@ OUString SvHeaderTabListBox::GetAccessibleObjectDescription( ::svt::AccessibleBr
sal_Int32
nRow
=
_nPos
/
nColumnCount
;
sal_uInt16
nColumn
=
static_cast
<
sal_uInt16
>
(
_nPos
%
nColumnCount
);
String
aText
(
SVT_RESSTR
(
STR_SVT_ACC_DESC_TABLISTBOX
)
);
aText
.
SearchAndReplace
(
sVar1
,
OUString
::
number
(
nRow
)
);
String
sColHeader
=
m_pImpl
->
m_pHeaderBar
->
GetItemText
(
m_pImpl
->
m_pHeaderBar
->
GetItemId
(
nColumn
)
);
if
(
sColHeader
.
Len
()
==
0
)
OU
String
aText
(
SVT_RESSTR
(
STR_SVT_ACC_DESC_TABLISTBOX
)
);
aText
=
aText
.
replaceFirst
(
sVar1
,
OUString
::
number
(
nRow
)
);
OU
String
sColHeader
=
m_pImpl
->
m_pHeaderBar
->
GetItemText
(
m_pImpl
->
m_pHeaderBar
->
GetItemId
(
nColumn
)
);
if
(
sColHeader
.
isEmpty
()
)
sColHeader
=
OUString
::
number
(
nColumn
);
aText
.
SearchAndReplace
(
sVar2
,
sColHeader
);
aText
=
aText
.
replaceFirst
(
sVar2
,
sColHeader
);
aRetText
=
aText
;
}
}
...
...
svtools/source/control/inettbc.cxx
Dosyayı görüntüle @
ee0d567f
...
...
@@ -85,7 +85,7 @@ public:
inline
SvtURLBox_Impl
(
)
{
FilterMatch
::
createWildCardFilterList
(
String
(),
m_aFilters
);
FilterMatch
::
createWildCardFilterList
(
OU
String
(),
m_aFilters
);
}
};
...
...
svtools/source/dialogs/wizardmachine.cxx
Dosyayı görüntüle @
ee0d567f
...
...
@@ -178,7 +178,7 @@ namespace svt
m_pNextPage
=
new
PushButton
(
this
,
WB_TABSTOP
);
m_pNextPage
->
SetHelpId
(
HID_WIZARD_NEXT
);
m_pNextPage
->
SetSizePixel
(
LogicToPixel
(
Size
(
50
,
14
),
MAP_APPFONT
)
);
m_pNextPage
->
SetText
(
String
(
SVT_RESSTR
(
STR_WIZDLG_NEXT
)));
m_pNextPage
->
SetText
(
OU
String
(
SVT_RESSTR
(
STR_WIZDLG_NEXT
)));
m_pNextPage
->
Show
();
AddButton
(
m_pNextPage
,
WIZARDDIALOG_BUTTON_STDOFFSET_X
);
...
...
svtools/source/misc/ehdl.cxx
Dosyayı görüntüle @
ee0d567f
...
...
@@ -211,7 +211,7 @@ bool SfxErrorHandler::CreateString(
//-------------------------------------------------------------------------
class
ResString
:
public
String
class
ResString
:
public
OU
String
/* [Beschreibung]
...
...
@@ -224,14 +224,14 @@ class ResString: public String
sal_uInt16
nFlags
;
public
:
sal_uInt16
GetFlags
()
const
{
return
nFlags
;}
const
String
&
GetString
()
const
{
return
*
this
;}
const
OU
String
&
GetString
()
const
{
return
*
this
;}
ResString
(
ResId
&
rId
);
};
//-------------------------------------------------------------------------
ResString
::
ResString
(
ResId
&
rId
)
:
String
(
rId
.
SetAutoRelease
(
sal_False
).
toString
()),
OU
String
(
rId
.
SetAutoRelease
(
sal_False
).
toString
()),
nFlags
(
0
)
{
ResMgr
*
pResMgr
=
rId
.
GetResMgr
();
...
...
svtools/source/misc/transfer.cxx
Dosyayı görüntüle @
ee0d567f
...
...
@@ -2005,8 +2005,10 @@ sal_Bool TransferableDataHelper::GetINetBookmark( const ::com::sun::star::datatr
if
(
GetSequence
(
rFlavor
,
aSeq
)
&&
(
2048
==
aSeq
.
getLength
()
)
)
{
rBmk
=
INetBookmark
(
String
(
reinterpret_cast
<
const
sal_Char
*
>
(
aSeq
.
getConstArray
()
),
osl_getThreadTextEncoding
()
),
String
(
reinterpret_cast
<
const
sal_Char
*
>
(
aSeq
.
getConstArray
()
)
+
1024
,
osl_getThreadTextEncoding
()
)
);
const
sal_Char
*
p1
=
reinterpret_cast
<
const
sal_Char
*
>
(
aSeq
.
getConstArray
()
);
const
sal_Char
*
p2
=
reinterpret_cast
<
const
sal_Char
*
>
(
aSeq
.
getConstArray
()
)
+
1024
;
rBmk
=
INetBookmark
(
OUString
(
p1
,
strlen
(
p1
),
osl_getThreadTextEncoding
()
),
OUString
(
p2
,
strlen
(
p2
),
osl_getThreadTextEncoding
()
)
);
bRet
=
sal_True
;
}
}
...
...
svtools/source/uno/genericunodialog.cxx
Dosyayı görüntüle @
ee0d567f
...
...
@@ -121,7 +121,7 @@ void OGenericUnoDialog::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, con
m_bTitleAmbiguous
=
sal_False
;
if
(
m_pDialog
)
m_pDialog
->
SetText
(
String
(
m_sTitle
));
m_pDialog
->
SetText
(
OU
String
(
m_sTitle
));
}
}
...
...
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