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
33526481
Kaydet (Commit)
33526481
authored
Eyl 17, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sw/inc/IDocumentRedlineAccess.hxx from String to OUString
Change-Id: If3f918bba1571b99588d62148f7ac446d72de6c9
üst
ffc782c2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
7 deletions
+6
-7
IDocumentRedlineAccess.hxx
sw/inc/IDocumentRedlineAccess.hxx
+2
-3
doc.hxx
sw/inc/doc.hxx
+2
-2
docredln.cxx
sw/source/core/doc/docredln.cxx
+2
-2
No files found.
sw/inc/IDocumentRedlineAccess.hxx
Dosyayı görüntüle @
33526481
...
...
@@ -33,7 +33,6 @@
struct
SwPosition
;
class
SwStartNode
;
class
SwNode
;
class
String
;
typedef
sal_uInt16
RedlineMode_t
;
namespace
nsRedlineMode_t
...
...
@@ -188,12 +187,12 @@ public:
virtual
sal_uInt16
GetRedlineAuthor
()
=
0
;
// For Readers etc.: register new Author in table.
virtual
sal_uInt16
InsertRedlineAuthor
(
const
String
&
rAuthor
)
=
0
;
virtual
sal_uInt16
InsertRedlineAuthor
(
const
OU
String
&
rAuthor
)
=
0
;
// Place a comment at Redline at given position.
virtual
bool
SetRedlineComment
(
/*[in]*/
const
SwPaM
&
rPam
,
/*[in]*/
const
String
&
rComment
)
=
0
;
/*[in]*/
const
OU
String
&
rComment
)
=
0
;
virtual
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
GetRedlinePassword
()
const
=
0
;
...
...
sw/inc/doc.hxx
Dosyayı görüntüle @
33526481
...
...
@@ -781,8 +781,8 @@ public:
virtual
const
SwRedline
*
SelPrevRedline
(
/*[in]*/
SwPaM
&
rPam
)
const
;
virtual
void
UpdateRedlineAttr
();
virtual
sal_uInt16
GetRedlineAuthor
();
virtual
sal_uInt16
InsertRedlineAuthor
(
const
String
&
rAuthor
);
virtual
bool
SetRedlineComment
(
/*[in]*/
const
SwPaM
&
rPam
,
/*[in]*/
const
String
&
rComment
);
virtual
sal_uInt16
InsertRedlineAuthor
(
const
OU
String
&
rAuthor
);
virtual
bool
SetRedlineComment
(
/*[in]*/
const
SwPaM
&
rPam
,
/*[in]*/
const
OU
String
&
rComment
);
virtual
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
GetRedlinePassword
()
const
;
virtual
void
SetRedlinePassword
(
/*[in]*/
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
rNewPassword
);
...
...
sw/source/core/doc/docredln.cxx
Dosyayı görüntüle @
33526481
...
...
@@ -2483,7 +2483,7 @@ const SwRedline* SwDoc::SelPrevRedline( SwPaM& rPam ) const
}
// Set comment at the Redline
bool
SwDoc
::
SetRedlineComment
(
const
SwPaM
&
rPaM
,
const
String
&
rS
)
bool
SwDoc
::
SetRedlineComment
(
const
SwPaM
&
rPaM
,
const
OU
String
&
rS
)
{
bool
bRet
=
false
;
const
SwPosition
*
pStt
=
rPaM
.
Start
(),
...
...
@@ -2517,7 +2517,7 @@ sal_uInt16 SwDoc::GetRedlineAuthor()
}
/// Insert new author into the Table for the Readers etc.
sal_uInt16
SwDoc
::
InsertRedlineAuthor
(
const
String
&
rNew
)
sal_uInt16
SwDoc
::
InsertRedlineAuthor
(
const
OU
String
&
rNew
)
{
return
SW_MOD
()
->
InsertRedlineAuthor
(
rNew
);
}
...
...
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