diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 20:51:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-26 07:42:24 -0600 |
commit | b1181b89f3c6a0b435f49d9b2bfa18db2b5f6f3c (patch) | |
tree | 1ccd7fbb50f8ef1a6ac846e178550da83cd263ca /svx/workben | |
parent | 060ab521fa0d5d6b9fcb97eab4718c04e8aec944 (diff) |
Remove visual noise from svx
Change-Id: I56497d953b0500ba0967fddb36ca8bbbe86c62ad
Reviewed-on: https://gerrit.libreoffice.org/8321
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx/workben')
-rw-r--r-- | svx/workben/msview/msview.cxx | 12 | ||||
-rw-r--r-- | svx/workben/msview/xmlconfig.cxx | 10 | ||||
-rw-r--r-- | svx/workben/msview/xmlconfig.hxx | 12 |
3 files changed, 17 insertions, 17 deletions
diff --git a/svx/workben/msview/msview.cxx b/svx/workben/msview/msview.cxx index 856fe4a74c2f..24dc3c9fef3e 100644 --- a/svx/workben/msview/msview.cxx +++ b/svx/workben/msview/msview.cxx @@ -66,7 +66,7 @@ using namespace ::com::sun::star; -/////////////////////////////////////////////////////////////////////// + enum CompareStatus { CMP_NOTYET = 0, CMP_EQUAL = 1, CMP_NOTEQUAL = 2, CMP_NOTAVAILABLE = 3 }; static ColorData gColors[] = { COL_BLACK, COL_GREEN, COL_RED, COL_CYAN }; @@ -473,9 +473,9 @@ void Atom::compare( Atom* pAtom ) } } -////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////// + + class AtomBoxString : public SvLBoxString { @@ -504,7 +504,7 @@ public: }; -////////////////////////////////////////////////////////////////////// + class AtomContainerTreeListBox : public SvTreeListBox { @@ -705,7 +705,7 @@ void AtomContainerTreeListBox::InsertAtom( const Atom* pAtom, SvTreeListEntry* p } } -/////////////////////////////////////////////////////////////////////// + extern void load_config( const OUString& rPath ); @@ -760,7 +760,7 @@ Atom* PPTDocument::getRootAtom() const return mpAtom; } -/////////////////////////////////////////////////////////////////////// + class MSViewerWorkWindow : public WorkWindow { diff --git a/svx/workben/msview/xmlconfig.cxx b/svx/workben/msview/xmlconfig.cxx index 62ba86ace1ad..1e06d0433a4c 100644 --- a/svx/workben/msview/xmlconfig.cxx +++ b/svx/workben/msview/xmlconfig.cxx @@ -45,11 +45,11 @@ using ::com::sun::star::io::IOException; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -/////////////////////////////////////////////////////////////////////// + AtomConfigMap gAtomConfigMap; -/////////////////////////////////////////////////////////////////////// + class ConfigHandler : public ::cppu::WeakAggImplHelper1<XDocumentHandler> { @@ -336,7 +336,7 @@ void load_config( const OUString& rPath ) } } -/////////////////////////////////////////////////////////////////////// + OUString ElementConfig::format( SvStream& rStream, sal_Size& nLength ) const { @@ -459,7 +459,7 @@ OUString ElementConfig::dump_float( SvStream& rStream, sal_Size& nLength ) return aRet; } -/////////////////////////////////////////////////////////////////////// + OUString ElementConfigContainer::format( SvStream& rStream, sal_Size& nLength ) const { @@ -525,7 +525,7 @@ OUString ElementConfigContainer::format( SvStream& rStream, sal_Size& nLength ) return aRet; } -/////////////////////////////////////////////////////////////////////// + OUString SwitchElementConfig::format( SvStream& rStream, sal_Size& nLength ) const { diff --git a/svx/workben/msview/xmlconfig.hxx b/svx/workben/msview/xmlconfig.hxx index 4ae10e005b7a..b9696023cf28 100644 --- a/svx/workben/msview/xmlconfig.hxx +++ b/svx/workben/msview/xmlconfig.hxx @@ -24,7 +24,7 @@ #include <list> #include <boost/shared_ptr.hpp> -/////////////////////////////////////////////////////////////////////// + enum ElementConfigType { ECT_HEXDUMP, ECT_BYTE, ECT_UINT, ECT_UNISTRING, ETC_FLOAT, ETC_CONTAINER }; @@ -53,7 +53,7 @@ private: typedef boost::shared_ptr< ElementConfig > ElementConfigPtr; typedef std::list< ElementConfigPtr > ElementConfigList; -/////////////////////////////////////////////////////////////////////// + class ElementValueConfig : public ElementConfig { @@ -66,7 +66,7 @@ private: OUString maValue; }; -/////////////////////////////////////////////////////////////////////// + class ElementConfigContainer : public ElementConfig { @@ -84,7 +84,7 @@ protected: ElementConfigList maElementConfigList; }; -/////////////////////////////////////////////////////////////////////// + class CaseElementConfig : public ElementConfigContainer { @@ -97,7 +97,7 @@ private: OUString maValue; }; -/////////////////////////////////////////////////////////////////////// + class SwitchElementConfig : public ElementConfigContainer { @@ -107,7 +107,7 @@ public: virtual OUString format( SvStream& rStream, sal_Size& nLength ) const; }; -/////////////////////////////////////////////////////////////////////// + class AtomConfig : public ElementConfigContainer { |