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
127a09b3
Kaydet (Commit)
127a09b3
authored
Eyl 30, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sc/source/filter/inc/xcl97rec.hxx from String to OUString
Change-Id: Ia36bc65bcfdaf92e3a2b6738479ff80be0d4a8a8
üst
0d0cd2b3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
xcl97rec.hxx
sc/source/filter/inc/xcl97rec.hxx
+6
-6
xcl97rec.cxx
sc/source/filter/xcl97/xcl97rec.cxx
+5
-5
No files found.
sc/source/filter/inc/xcl97rec.hxx
Dosyayı görüntüle @
127a09b3
...
...
@@ -206,7 +206,7 @@ class SdrTextObj;
class
XclTxo
:
public
ExcRecord
{
public
:
XclTxo
(
const
String
&
rString
,
sal_uInt16
nFontIx
=
EXC_FONT_APP
);
XclTxo
(
const
OU
String
&
rString
,
sal_uInt16
nFontIx
=
EXC_FONT_APP
);
XclTxo
(
const
XclExpRoot
&
rRoot
,
const
SdrTextObj
&
rEditObj
);
XclTxo
(
const
XclExpRoot
&
rRoot
,
const
EditTextObject
&
rEditObj
,
SdrObject
*
pCaption
);
...
...
@@ -318,14 +318,14 @@ public:
class
ExcBundlesheet8
:
public
ExcBundlesheetBase
{
private
:
String
sUnicodeName
;
OUString
sUnicodeName
;
XclExpString
GetName
()
const
;
virtual
void
SaveCont
(
XclExpStream
&
rStrm
);
public
:
ExcBundlesheet8
(
RootData
&
rRootData
,
SCTAB
nTab
);
ExcBundlesheet8
(
const
String
&
rString
);
ExcBundlesheet8
(
const
OU
String
&
rString
);
virtual
sal_Size
GetLen
()
const
;
...
...
@@ -351,7 +351,7 @@ private:
XclExpString
aName
;
virtual
void
SaveCont
(
XclExpStream
&
rStrm
);
public
:
XclCodename
(
const
String
&
);
XclCodename
(
const
OU
String
&
);
virtual
sal_uInt16
GetNum
()
const
;
virtual
sal_Size
GetLen
()
const
;
...
...
@@ -372,7 +372,7 @@ private:
protected
:
public
:
ExcEScenarioCell
(
sal_uInt16
nC
,
sal_uInt16
nR
,
const
String
&
rTxt
);
ExcEScenarioCell
(
sal_uInt16
nC
,
sal_uInt16
nR
,
const
OU
String
&
rTxt
);
inline
sal_Size
GetStringBytes
()
const
{
return
sText
.
GetSize
();
}
...
...
@@ -396,7 +396,7 @@ private:
std
::
vector
<
ExcEScenarioCell
>
aCells
;
sal_Bool
Append
(
sal_uInt16
nCol
,
sal_uInt16
nRow
,
const
String
&
rTxt
);
sal_Bool
Append
(
sal_uInt16
nCol
,
sal_uInt16
nRow
,
const
OU
String
&
rTxt
);
virtual
void
SaveCont
(
XclExpStream
&
rStrm
);
...
...
sc/source/filter/xcl97/xcl97rec.cxx
Dosyayı görüntüle @
127a09b3
...
...
@@ -697,7 +697,7 @@ static sal_uInt8 lcl_GetVerAlignFromItemSet( const SfxItemSet& rItemSet )
return
nVerAlign
;
}
XclTxo
::
XclTxo
(
const
String
&
rString
,
sal_uInt16
nFontIx
)
:
XclTxo
::
XclTxo
(
const
OU
String
&
rString
,
sal_uInt16
nFontIx
)
:
mpString
(
new
XclExpString
(
rString
)
),
mnRotation
(
EXC_OBJ_ORIENT_NONE
),
mnHorAlign
(
EXC_OBJ_HOR_LEFT
),
...
...
@@ -1077,7 +1077,7 @@ ExcBundlesheet8::ExcBundlesheet8( RootData& rRootData, SCTAB _nTab ) :
}
ExcBundlesheet8
::
ExcBundlesheet8
(
const
String
&
rString
)
:
ExcBundlesheet8
::
ExcBundlesheet8
(
const
OU
String
&
rString
)
:
ExcBundlesheetBase
(),
sUnicodeName
(
rString
)
{
...
...
@@ -1144,7 +1144,7 @@ sal_Size XclObproj::GetLen() const
// ---- class XclCodename --------------------------------------------
XclCodename
::
XclCodename
(
const
String
&
r
)
:
aName
(
r
)
XclCodename
::
XclCodename
(
const
OU
String
&
r
)
:
aName
(
r
)
{
}
...
...
@@ -1170,7 +1170,7 @@ sal_Size XclCodename::GetLen() const
// ---- Scenarios ----------------------------------------------------
ExcEScenarioCell
::
ExcEScenarioCell
(
sal_uInt16
nC
,
sal_uInt16
nR
,
const
String
&
rTxt
)
:
ExcEScenarioCell
::
ExcEScenarioCell
(
sal_uInt16
nC
,
sal_uInt16
nR
,
const
OU
String
&
rTxt
)
:
nCol
(
nC
),
nRow
(
nR
),
sText
(
rTxt
,
EXC_STR_DEFAULT
,
255
)
...
...
@@ -1262,7 +1262,7 @@ ExcEScenario::~ExcEScenario()
{
}
sal_Bool
ExcEScenario
::
Append
(
sal_uInt16
nCol
,
sal_uInt16
nRow
,
const
String
&
rTxt
)
sal_Bool
ExcEScenario
::
Append
(
sal_uInt16
nCol
,
sal_uInt16
nRow
,
const
OU
String
&
rTxt
)
{
if
(
aCells
.
size
()
==
EXC_SCEN_MAXCELL
)
return
false
;
...
...
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