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
2b59ca5c
Kaydet (Commit)
2b59ca5c
authored
Nis 22, 2014
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
writerfilter: fix indentation in rtfskipdestination
Change-Id: I56a306baabdfb46da4b46c5e0c0ce2bbd2369e03
üst
ff05b6b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
21 deletions
+25
-21
rtfskipdestination.cxx
writerfilter/source/rtftok/rtfskipdestination.cxx
+6
-4
rtfskipdestination.hxx
writerfilter/source/rtftok/rtfskipdestination.hxx
+19
-17
No files found.
writerfilter/source/rtftok/rtfskipdestination.cxx
Dosyayı görüntüle @
2b59ca5c
...
@@ -11,13 +11,15 @@
...
@@ -11,13 +11,15 @@
#include <osl/diagnose.h>
#include <osl/diagnose.h>
#include <sal/log.hxx>
#include <sal/log.hxx>
namespace
writerfilter
{
namespace
writerfilter
namespace
rtftok
{
{
namespace
rtftok
{
RTFSkipDestination
::
RTFSkipDestination
(
RTFListener
&
rImport
)
RTFSkipDestination
::
RTFSkipDestination
(
RTFListener
&
rImport
)
:
m_rImport
(
rImport
),
:
m_rImport
(
rImport
),
m_bParsed
(
true
),
m_bParsed
(
true
),
m_bReset
(
true
)
m_bReset
(
true
)
{
{
}
}
...
...
writerfilter/source/rtftok/rtfskipdestination.hxx
Dosyayı görüntüle @
2b59ca5c
...
@@ -12,23 +12,25 @@
...
@@ -12,23 +12,25 @@
#include <rtflistener.hxx>
#include <rtflistener.hxx>
namespace
writerfilter
{
namespace
writerfilter
namespace
rtftok
{
{
/// Skips a destination after a not parsed control word if it was prefixed with \*
namespace
rtftok
class
RTFSkipDestination
{
{
/// Skips a destination after a not parsed control word if it was prefixed with \*
public
:
class
RTFSkipDestination
RTFSkipDestination
(
RTFListener
&
rImport
);
{
virtual
~
RTFSkipDestination
();
public
:
void
setParsed
(
bool
bParsed
);
RTFSkipDestination
(
RTFListener
&
rImport
);
void
setReset
(
bool
bReset
);
virtual
~
RTFSkipDestination
();
private
:
void
setParsed
(
bool
bParsed
);
RTFListener
&
m_rImport
;
void
setReset
(
bool
bReset
);
bool
m_bParsed
;
private
:
/// If false, the destructor is a noop, required by the \* symbol itself.
RTFListener
&
m_rImport
;
bool
m_bReset
;
bool
m_bParsed
;
};
/// If false, the destructor is a noop, required by the \* symbol itself.
}
// namespace rtftok
bool
m_bReset
;
};
}
// namespace rtftok
}
// namespace writerfilter
}
// namespace writerfilter
#endif // INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFSKIPDESTINATION_HXX
#endif // INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFSKIPDESTINATION_HXX
...
...
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