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
2c622c18
Kaydet (Commit)
2c622c18
authored
Şub 15, 2017
tarafından
Pranav Kant
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
gtktiledviewer: Store author name of each view
Change-Id: I9a5be9050f3bedd14b6b5602b51bf40da0a11175
üst
4d800a54
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
gtktiledviewer.cxx
libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
+6
-4
No files found.
libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
Dosyayı görüntüle @
2c622c18
...
...
@@ -165,6 +165,8 @@ public:
std
::
shared_ptr
<
CommentsSidebar
>
m_pCommentsSidebar
;
/// Rendering arguments, which are the same for all views.
boost
::
property_tree
::
ptree
m_aRenderingArguments
;
/// Author of this window
std
::
string
m_aAuthor
;
TiledWindow
()
:
m_pDocView
(
nullptr
),
...
...
@@ -1131,9 +1133,9 @@ static void createView(GtkWidget* pButton, gpointer /*pItem*/)
TiledWindow
&
rWindow
=
lcl_getTiledWindow
(
pButton
);
boost
::
property_tree
::
ptree
aTree
=
rWindow
.
m_aRenderingArguments
;
std
::
string
aAuthor
=
getNextAuthor
();
rWindow
.
m_
aAuthor
=
getNextAuthor
();
aTree
.
put
(
boost
::
property_tree
::
ptree
::
path_type
(
".uno:Author/type"
,
'/'
),
"string"
);
aTree
.
put
(
boost
::
property_tree
::
ptree
::
path_type
(
".uno:Author/value"
,
'/'
),
aAuthor
);
aTree
.
put
(
boost
::
property_tree
::
ptree
::
path_type
(
".uno:Author/value"
,
'/'
),
rWindow
.
m_
aAuthor
);
std
::
stringstream
aStream
;
boost
::
property_tree
::
write_json
(
aStream
,
aTree
);
std
::
string
aArguments
=
aStream
.
str
();
...
...
@@ -1195,9 +1197,9 @@ static void createModelAndView(const char* pLOPath, const char* pDocPath, const
// Save rendering arguments for views which are created later.
rWindow
.
m_aRenderingArguments
=
aTree
;
rWindow
.
m_aAuthor
=
getNextAuthor
();
aTree
.
put
(
boost
::
property_tree
::
ptree
::
path_type
(
".uno:Author/type"
,
'/'
),
"string"
);
aTree
.
put
(
boost
::
property_tree
::
ptree
::
path_type
(
".uno:Author/value"
,
'/'
),
getNextAuthor
()
);
aTree
.
put
(
boost
::
property_tree
::
ptree
::
path_type
(
".uno:Author/value"
,
'/'
),
rWindow
.
m_aAuthor
);
std
::
stringstream
aStream
;
boost
::
property_tree
::
write_json
(
aStream
,
aTree
);
...
...
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