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
e847e675
Kaydet (Commit)
e847e675
authored
Eki 22, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fixup ScDocFunc OUString changes.
Change-Id: I2f319d9e168b2ba950c5d831163e946b52b76137
üst
c2ccd20c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
sendfunc.cxx
sc/source/ui/collab/sendfunc.cxx
+7
-7
sendfunc.hxx
sc/source/ui/collab/sendfunc.hxx
+7
-7
No files found.
sc/source/ui/collab/sendfunc.cxx
Dosyayı görüntüle @
e847e675
...
...
@@ -321,7 +321,7 @@ void ScDocFuncSend::EndListAction()
SendMessage
(
aOp
);
}
sal_Bool
ScDocFuncSend
::
SetNormalString
(
bool
&
o_rbNumFmtSet
,
const
ScAddress
&
rPos
,
const
String
&
rText
,
sal_Bool
bApi
)
sal_Bool
ScDocFuncSend
::
SetNormalString
(
bool
&
o_rbNumFmtSet
,
const
ScAddress
&
rPos
,
const
OU
String
&
rText
,
sal_Bool
bApi
)
{
ScChangeOpWriter
aOp
(
"setNormalString"
);
aOp
.
appendAddress
(
rPos
);
...
...
@@ -404,7 +404,7 @@ bool ScDocFuncSend::ShowNote( const ScAddress& rPos, bool bShow )
return
true
;
// needs some code auditing action
}
bool
ScDocFuncSend
::
SetNoteText
(
const
ScAddress
&
rPos
,
const
String
&
rNoteText
,
sal_Bool
bApi
)
bool
ScDocFuncSend
::
SetNoteText
(
const
ScAddress
&
rPos
,
const
OU
String
&
rNoteText
,
sal_Bool
bApi
)
{
ScChangeOpWriter
aOp
(
"setNoteText"
);
aOp
.
appendAddress
(
rPos
);
...
...
@@ -414,8 +414,8 @@ bool ScDocFuncSend::SetNoteText( const ScAddress& rPos, const String& rNoteText,
return
true
;
// needs some code auditing action
}
sal_Bool
ScDocFuncSend
::
RenameTable
(
SCTAB
nTab
,
const
String
&
rName
,
sal_Bool
bRecord
,
sal_Bool
bApi
)
sal_Bool
ScDocFuncSend
::
RenameTable
(
SCTAB
nTab
,
const
OU
String
&
rName
,
sal_Bool
bRecord
,
sal_Bool
bApi
)
{
ScChangeOpWriter
aOp
(
"renameTable"
);
aOp
.
appendInt
(
nTab
);
...
...
@@ -427,14 +427,14 @@ sal_Bool ScDocFuncSend::RenameTable( SCTAB nTab, const String& rName,
}
sal_Bool
ScDocFuncSend
::
ApplyAttributes
(
const
ScMarkData
&
rMark
,
const
ScPatternAttr
&
rPattern
,
sal_Bool
bRecord
,
sal_Bool
bApi
)
sal_Bool
bRecord
,
sal_Bool
bApi
)
{
SAL_INFO
(
"sc.tubes"
,
"ApplyAttributes not implemented!"
);
return
ScDocFunc
::
ApplyAttributes
(
rMark
,
rPattern
,
bRecord
,
bApi
);
}
sal_Bool
ScDocFuncSend
::
ApplyStyle
(
const
ScMarkData
&
rMark
,
const
String
&
rStyleName
,
sal_Bool
bRecord
,
sal_Bool
bApi
)
sal_Bool
ScDocFuncSend
::
ApplyStyle
(
const
ScMarkData
&
rMark
,
const
OU
String
&
rStyleName
,
sal_Bool
bRecord
,
sal_Bool
bApi
)
{
SAL_INFO
(
"sc.tubes"
,
"ApplyStyle not implemented!"
);
return
ScDocFunc
::
ApplyStyle
(
rMark
,
rStyleName
,
bRecord
,
bApi
);
...
...
sc/source/ui/collab/sendfunc.hxx
Dosyayı görüntüle @
e847e675
...
...
@@ -33,7 +33,7 @@ public:
virtual
void
EnterListAction
(
sal_uInt16
nNameResId
);
virtual
void
EndListAction
();
virtual
sal_Bool
SetNormalString
(
bool
&
o_rbNumFmtSet
,
const
ScAddress
&
rPos
,
const
String
&
rText
,
sal_Bool
bApi
);
virtual
sal_Bool
SetNormalString
(
bool
&
o_rbNumFmtSet
,
const
ScAddress
&
rPos
,
const
OU
String
&
rText
,
sal_Bool
bApi
);
virtual
bool
SetValueCell
(
const
ScAddress
&
rPos
,
double
fVal
,
bool
bInteraction
);
virtual
bool
SetStringCell
(
const
ScAddress
&
rPos
,
const
OUString
&
rStr
,
bool
bInteraction
);
virtual
bool
SetEditCell
(
const
ScAddress
&
rPos
,
const
EditTextObject
&
rStr
,
bool
bInteraction
);
...
...
@@ -43,14 +43,14 @@ public:
const
ScAddress
&
rPos
,
const
OUString
&
rText
,
bool
bInterpret
,
bool
bEnglish
,
bool
bApi
,
const
formula
::
FormulaGrammar
::
Grammar
eGrammar
);
virtual
bool
ShowNote
(
const
ScAddress
&
rPos
,
bool
bShow
=
true
);
virtual
bool
SetNoteText
(
const
ScAddress
&
rPos
,
const
String
&
rNoteText
,
sal_Bool
bApi
);
virtual
sal_Bool
RenameTable
(
SCTAB
nTab
,
const
String
&
rName
,
sal_Bool
bRecord
,
sal_Bool
bApi
);
virtual
bool
SetNoteText
(
const
ScAddress
&
rPos
,
const
OU
String
&
rNoteText
,
sal_Bool
bApi
);
virtual
sal_Bool
RenameTable
(
SCTAB
nTab
,
const
OU
String
&
rName
,
sal_Bool
bRecord
,
sal_Bool
bApi
);
virtual
sal_Bool
ApplyAttributes
(
const
ScMarkData
&
rMark
,
const
ScPatternAttr
&
rPattern
,
sal_Bool
bRecord
,
sal_Bool
bApi
);
virtual
sal_Bool
ApplyStyle
(
const
ScMarkData
&
rMark
,
const
String
&
rStyleName
,
sal_Bool
bRecord
,
sal_Bool
bApi
);
sal_Bool
bRecord
,
sal_Bool
bApi
);
virtual
sal_Bool
ApplyStyle
(
const
ScMarkData
&
rMark
,
const
OU
String
&
rStyleName
,
sal_Bool
bRecord
,
sal_Bool
bApi
);
virtual
sal_Bool
MergeCells
(
const
ScCellMergeOption
&
rOption
,
sal_Bool
bContents
,
sal_Bool
bRecord
,
sal_Bool
bApi
);
sal_Bool
bRecord
,
sal_Bool
bApi
);
};
#endif
...
...
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