summaryrefslogtreecommitdiff
path: root/framework/inc/helper/statusindicatorfactory.hxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 18:54:02 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-26 14:41:41 -0600
commitfcbefea01766e0888f7813672d9eddbdec5a9046 (patch)
tree8861652061bb2189350824217c98a259a9a9d2ec /framework/inc/helper/statusindicatorfactory.hxx
parenta395c9fa387eabf2d09360f1023f5e3e66af21a8 (diff)
Remove visual noise from framework
Conflicts: framework/inc/dispatch/oxt_handler.hxx framework/inc/services/layoutmanager.hxx framework/inc/tabwin/tabwindow.hxx framework/source/dispatch/menudispatcher.cxx framework/source/helper/dockingareadefaultacceptor.cxx framework/source/helper/ocomponentaccess.cxx framework/source/helper/ocomponentenumeration.cxx framework/source/helper/oframes.cxx framework/source/layoutmanager/toolbarlayoutmanager.hxx framework/source/recording/dispatchrecorder.cxx framework/source/services/desktop.cxx framework/source/services/frame.cxx framework/source/services/urltransformer.cxx Change-Id: Ibb04e3f6f0796e7f2be16dcce38542f8b90708d4 Reviewed-on: https://gerrit.libreoffice.org/8265 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'framework/inc/helper/statusindicatorfactory.hxx')
-rw-r--r--framework/inc/helper/statusindicatorfactory.hxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/framework/inc/helper/statusindicatorfactory.hxx b/framework/inc/helper/statusindicatorfactory.hxx
index 37300bba9fd8..57c8271fd503 100644
--- a/framework/inc/helper/statusindicatorfactory.hxx
+++ b/framework/inc/helper/statusindicatorfactory.hxx
@@ -24,7 +24,7 @@
// with solaris headers ...
#include <vector>
-//_______________________________________________
+
// include files of own module
#include <helper/wakeupthread.hxx>
#include <threadhelp/threadhelpbase.hxx>
@@ -34,7 +34,7 @@
#include <macros/generic.hxx>
#include <general.h>
-//_______________________________________________
+
// include uno interfaces
#include <com/sun/star/lang/XTypeProvider.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
@@ -59,7 +59,7 @@
namespace framework{
-//===============================================
+
/**
@descr This struct hold some information about all currently running progress proccesses.
Because the can be used on a stack, we must cache her states but must paint only
@@ -67,7 +67,7 @@ namespace framework{
*/
struct IndicatorInfo
{
- //-------------------------------------------
+
// member
public:
@@ -84,11 +84,11 @@ struct IndicatorInfo
/** @short the last set value for this indicator */
sal_Int32 m_nValue;
- //-------------------------------------------
+
// interface
public:
- //---------------------------------------
+
/** @short initialize new instance of this class
@param xIndicator
@@ -110,7 +110,7 @@ struct IndicatorInfo
m_nValue = 0 ;
}
- //---------------------------------------
+
/** @short Don't forget to free used references!
*/
~IndicatorInfo()
@@ -118,7 +118,7 @@ struct IndicatorInfo
m_xIndicator.clear();
}
- //---------------------------------------------------------------------------------------------------------
+
/** @short Used to locate an info struct inside a stl structure ...
@descr The indicator object itself is used as key. Its values
@@ -131,11 +131,11 @@ struct IndicatorInfo
}
};
-//===============================================
+
/** @descr Define a lits of child indicator objects and her data. */
typedef ::std::vector< IndicatorInfo > IndicatorStack;
-//===============================================
+
/** @short implement a factory service to create new status indicator objects
@descr Internally it uses:
@@ -158,7 +158,7 @@ class StatusIndicatorFactory : private ThreadHelpBase
, css::task::XStatusIndicatorFactory
, css::util::XUpdatable >
{
- //-------------------------------------------
+
// member
private:
@@ -202,7 +202,7 @@ class StatusIndicatorFactory : private ThreadHelpBase
/** prevent recursive calling of Application::Reschedule(). */
static sal_Int32 m_nInReschedule;
- //-------------------------------------------
+
// interface
public:
@@ -228,23 +228,23 @@ class StatusIndicatorFactory : private ThreadHelpBase
return aSeq;
}
- //---------------------------------------
+
// XInitialization
virtual void SAL_CALL initialize(const css::uno::Sequence< css::uno::Any >& lArguments)
throw(css::uno::Exception ,
css::uno::RuntimeException, std::exception);
- //---------------------------------------
+
// XStatusIndicatorFactory
virtual css::uno::Reference< css::task::XStatusIndicator > SAL_CALL createStatusIndicator()
throw(css::uno::RuntimeException, std::exception);
- //---------------------------------------
+
// XUpdatable
virtual void SAL_CALL update()
throw(css::uno::RuntimeException, std::exception);
- //---------------------------------------
+
// similar (XStatusIndicator)
virtual void start(const css::uno::Reference< css::task::XStatusIndicator >& xChild,
const OUString& sText ,
@@ -260,14 +260,14 @@ class StatusIndicatorFactory : private ThreadHelpBase
virtual void SAL_CALL setValue(const css::uno::Reference< css::task::XStatusIndicator >& xChild,
sal_Int32 nValue);
- //-------------------------------------------
+
// specials
protected:
virtual ~StatusIndicatorFactory();
- //-------------------------------------------
+
// helper
private: