diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 18:50:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-26 14:54:56 -0600 |
commit | bed18b128ff1329579369b07b2b172e2906649f8 (patch) | |
tree | 2d3766c57b8b262e9560578edecb83e070154fe1 /forms/source/helper | |
parent | 224f6c17f7119ca65716a73f21244ddd3e26a653 (diff) |
Remove visual noise from forms
Conflicts:
forms/source/component/DatabaseForm.cxx
Change-Id: I4005fe65e89794bd92191c37221c252a3e964917
Reviewed-on: https://gerrit.libreoffice.org/8262
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'forms/source/helper')
-rw-r--r-- | forms/source/helper/commanddescriptionprovider.cxx | 12 | ||||
-rw-r--r-- | forms/source/helper/commandimageprovider.cxx | 12 | ||||
-rw-r--r-- | forms/source/helper/controlfeatureinterception.cxx | 12 | ||||
-rw-r--r-- | forms/source/helper/formnavigation.cxx | 16 | ||||
-rw-r--r-- | forms/source/helper/resettable.cxx | 12 | ||||
-rw-r--r-- | forms/source/helper/urltransformer.cxx | 12 | ||||
-rw-r--r-- | forms/source/helper/windowstateguard.cxx | 16 |
7 files changed, 46 insertions, 46 deletions
diff --git a/forms/source/helper/commanddescriptionprovider.cxx b/forms/source/helper/commanddescriptionprovider.cxx index fec8c7230234..b588bd8bef26 100644 --- a/forms/source/helper/commanddescriptionprovider.cxx +++ b/forms/source/helper/commanddescriptionprovider.cxx @@ -28,10 +28,10 @@ #include <comphelper/namedvaluecollection.hxx> #include <tools/diagnose_ex.h> -//........................................................................ + namespace frm { -//........................................................................ + using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::XInterface; @@ -52,9 +52,9 @@ namespace frm using ::com::sun::star::beans::PropertyValue; using ::com::sun::star::frame::theUICommandDescription; - //==================================================================== + //= DefaultCommandDescriptionProvider - //==================================================================== + class DefaultCommandDescriptionProvider : public ICommandDescriptionProvider { public: @@ -126,8 +126,8 @@ namespace frm return pDescriptionProvider; } -//........................................................................ + } // namespace frm -//........................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/forms/source/helper/commandimageprovider.cxx b/forms/source/helper/commandimageprovider.cxx index 72adc999f1f1..71a1fab71e3c 100644 --- a/forms/source/helper/commandimageprovider.cxx +++ b/forms/source/helper/commandimageprovider.cxx @@ -28,10 +28,10 @@ #include <tools/diagnose_ex.h> -//........................................................................ + namespace frm { -//........................................................................ + using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::XInterface; @@ -57,9 +57,9 @@ namespace frm namespace ImageType = ::com::sun::star::ui::ImageType; - //==================================================================== + //= DocumentCommandImageProvider - //==================================================================== + class DocumentCommandImageProvider : public ICommandImageProvider { public: @@ -166,8 +166,8 @@ namespace frm return pImageProvider; } -//........................................................................ + } // namespace frm -//........................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/forms/source/helper/controlfeatureinterception.cxx b/forms/source/helper/controlfeatureinterception.cxx index d0f3f120143d..a40a41323e6f 100644 --- a/forms/source/helper/controlfeatureinterception.cxx +++ b/forms/source/helper/controlfeatureinterception.cxx @@ -20,19 +20,19 @@ #include "controlfeatureinterception.hxx" #include "urltransformer.hxx" -//........................................................................ + namespace frm { -//........................................................................ + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::util; using namespace ::com::sun::star::lang; - //==================================================================== + //= ControlFeatureInterception - //==================================================================== + ControlFeatureInterception::ControlFeatureInterception( const Reference< XComponentContext >& _rxORB ) :m_pUrlTransformer( new UrlTransformer( _rxORB ) ) @@ -150,8 +150,8 @@ namespace frm return queryDispatch( m_pUrlTransformer->getStrictURLFromAscii( _pAsciiURL ) ); } -//........................................................................ + } // namespace frm -//........................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/forms/source/helper/formnavigation.cxx b/forms/source/helper/formnavigation.cxx index 9670ca62d2f7..fe0d93d45bf6 100644 --- a/forms/source/helper/formnavigation.cxx +++ b/forms/source/helper/formnavigation.cxx @@ -27,10 +27,10 @@ #include <tools/debug.hxx> -//......................................................................... + namespace frm { -//......................................................................... + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; @@ -39,9 +39,9 @@ namespace frm using namespace ::com::sun::star::frame; namespace FormFeature = ::com::sun::star::form::runtime::FormFeature; - //================================================================== + //= OFormNavigationHelper - //================================================================== + OFormNavigationHelper::OFormNavigationHelper( const Reference< XComponentContext >& _rxORB ) :m_xORB( _rxORB ) @@ -372,9 +372,9 @@ namespace frm m_aSupportedFeatures.swap( aEmpty ); } - //================================================================== + //= OFormNavigationMapper - //================================================================== + OFormNavigationMapper::OFormNavigationMapper( const Reference< XComponentContext >& _rxORB ) { @@ -466,8 +466,8 @@ namespace frm return -1; } -//......................................................................... + } // namespace frm -//......................................................................... + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/forms/source/helper/resettable.cxx b/forms/source/helper/resettable.cxx index 1a87e5087fa5..7a36cb6bb622 100644 --- a/forms/source/helper/resettable.cxx +++ b/forms/source/helper/resettable.cxx @@ -21,10 +21,10 @@ #include <cppuhelper/weak.hxx> -//........................................................................ + namespace frm { -//........................................................................ + using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::XInterface; @@ -40,9 +40,9 @@ namespace frm using ::com::sun::star::form::XResetListener; using ::com::sun::star::lang::EventObject; - //==================================================================== + //= ResetHelper - //==================================================================== + void ResetHelper::addResetListener( const Reference< XResetListener >& _listener ) { @@ -82,8 +82,8 @@ namespace frm m_aResetListeners.disposeAndClear( aEvent ); } -//........................................................................ + } // namespace frm -//........................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/forms/source/helper/urltransformer.cxx b/forms/source/helper/urltransformer.cxx index c80744fa6155..11b8b835f666 100644 --- a/forms/source/helper/urltransformer.cxx +++ b/forms/source/helper/urltransformer.cxx @@ -23,18 +23,18 @@ #include <tools/debug.hxx> #include <comphelper/processfactory.hxx> -//........................................................................ + namespace frm { -//........................................................................ + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::util; using namespace ::com::sun::star::lang; - //==================================================================== + //= UrlTransformer - //==================================================================== + UrlTransformer::UrlTransformer( const Reference< XComponentContext >& _rxORB ) :m_xORB( _rxORB ) @@ -82,8 +82,8 @@ namespace frm m_xTransformer->parseSmart( _rURL, OUString::createFromAscii( _pAsciiURL ) ); } -//........................................................................ + } // namespace frm -//........................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/forms/source/helper/windowstateguard.cxx b/forms/source/helper/windowstateguard.cxx index b970069419f2..d84709469814 100644 --- a/forms/source/helper/windowstateguard.cxx +++ b/forms/source/helper/windowstateguard.cxx @@ -25,10 +25,10 @@ #include <cppuhelper/implbase1.hxx> #include <tools/diagnose_ex.h> -//........................................................................ + namespace frm { -//........................................................................ + using ::com::sun::star::awt::XWindowListener2; using ::com::sun::star::uno::Reference; @@ -41,9 +41,9 @@ namespace frm using ::com::sun::star::uno::UNO_QUERY; using ::com::sun::star::uno::Exception; - //==================================================================== + //= WindowStateGuard_Impl - //==================================================================== + typedef ::cppu::WeakImplHelper1 < XWindowListener2 > WindowStateGuard_Impl_Base; class WindowStateGuard_Impl : public WindowStateGuard_Impl_Base @@ -186,9 +186,9 @@ namespace frm dispose(); } - //==================================================================== + //= WindowStateGuard - //==================================================================== + WindowStateGuard::WindowStateGuard() { @@ -214,8 +214,8 @@ namespace frm m_pImpl = new WindowStateGuard_Impl( _rxWindow, xModelProps ); } -//........................................................................ + } // namespace frm -//........................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |