summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-04-22 21:48:00 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-04-22 21:54:28 +0200
commit2b59ca5c36fb684cae438917f559e97272293e26 (patch)
tree23e9a4dd678824a183c5c82b1a068e0735ad401c /writerfilter
parentff05b6b10094de3e27f9d200c0ccdbb2f6cc76c5 (diff)
writerfilter: fix indentation in rtfskipdestination
Change-Id: I56a306baabdfb46da4b46c5e0c0ce2bbd2369e03
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtfskipdestination.cxx10
-rw-r--r--writerfilter/source/rtftok/rtfskipdestination.hxx36
2 files changed, 25 insertions, 21 deletions
diff --git a/writerfilter/source/rtftok/rtfskipdestination.cxx b/writerfilter/source/rtftok/rtfskipdestination.cxx
index 68081c15943f..044e26b5036a 100644
--- a/writerfilter/source/rtftok/rtfskipdestination.cxx
+++ b/writerfilter/source/rtftok/rtfskipdestination.cxx
@@ -11,13 +11,15 @@
#include <osl/diagnose.h>
#include <sal/log.hxx>
-namespace writerfilter {
-namespace rtftok {
+namespace writerfilter
+{
+namespace rtftok
+{
RTFSkipDestination::RTFSkipDestination(RTFListener& rImport)
: m_rImport(rImport),
- m_bParsed(true),
- m_bReset(true)
+ m_bParsed(true),
+ m_bReset(true)
{
}
diff --git a/writerfilter/source/rtftok/rtfskipdestination.hxx b/writerfilter/source/rtftok/rtfskipdestination.hxx
index 33f0d6a4539e..f70a8c71bbcb 100644
--- a/writerfilter/source/rtftok/rtfskipdestination.hxx
+++ b/writerfilter/source/rtftok/rtfskipdestination.hxx
@@ -12,23 +12,25 @@
#include <rtflistener.hxx>
-namespace writerfilter {
- namespace rtftok {
- /// Skips a destination after a not parsed control word if it was prefixed with \*
- class RTFSkipDestination
- {
- public:
- RTFSkipDestination(RTFListener& rImport);
- virtual ~RTFSkipDestination();
- void setParsed(bool bParsed);
- void setReset(bool bReset);
- private:
- RTFListener& m_rImport;
- bool m_bParsed;
- /// If false, the destructor is a noop, required by the \* symbol itself.
- bool m_bReset;
- };
- } // namespace rtftok
+namespace writerfilter
+{
+namespace rtftok
+{
+/// Skips a destination after a not parsed control word if it was prefixed with \*
+class RTFSkipDestination
+{
+public:
+ RTFSkipDestination(RTFListener& rImport);
+ virtual ~RTFSkipDestination();
+ void setParsed(bool bParsed);
+ void setReset(bool bReset);
+private:
+ RTFListener& m_rImport;
+ bool m_bParsed;
+ /// If false, the destructor is a noop, required by the \* symbol itself.
+ bool m_bReset;
+};
+} // namespace rtftok
} // namespace writerfilter
#endif // INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFSKIPDESTINATION_HXX