summaryrefslogtreecommitdiff
path: root/UnoControls
diff options
context:
space:
mode:
Diffstat (limited to 'UnoControls')
-rw-r--r--UnoControls/inc/basecontainercontrol.hxx7
-rw-r--r--UnoControls/inc/basecontrol.hxx7
-rw-r--r--UnoControls/inc/multiplexer.hxx7
-rw-r--r--UnoControls/source/base/basecontainercontrol.cxx11
-rw-r--r--UnoControls/source/base/basecontrol.cxx11
-rw-r--r--UnoControls/source/base/registercontrols.cxx8
-rw-r--r--UnoControls/source/controls/OConnectionPointContainerHelper.cxx11
-rw-r--r--UnoControls/source/controls/OConnectionPointHelper.cxx11
-rw-r--r--UnoControls/source/controls/framecontrol.cxx12
-rw-r--r--UnoControls/source/controls/progressbar.cxx10
-rw-r--r--UnoControls/source/controls/progressmonitor.cxx11
-rw-r--r--UnoControls/source/controls/statusindicator.cxx10
-rw-r--r--UnoControls/source/inc/OConnectionPointContainerHelper.hxx8
-rw-r--r--UnoControls/source/inc/OConnectionPointHelper.hxx7
-rw-r--r--UnoControls/source/inc/framecontrol.hxx7
-rw-r--r--UnoControls/source/inc/progressbar.hxx7
-rw-r--r--UnoControls/source/inc/progressmonitor.hxx7
-rw-r--r--UnoControls/source/inc/statusindicator.hxx7
18 files changed, 1 insertions, 158 deletions
diff --git a/UnoControls/inc/basecontainercontrol.hxx b/UnoControls/inc/basecontainercontrol.hxx
index 960848086382..78d0dbc0f341 100644
--- a/UnoControls/inc/basecontainercontrol.hxx
+++ b/UnoControls/inc/basecontainercontrol.hxx
@@ -20,10 +20,6 @@
#ifndef _UNOCONTROLS_BASECONTAINERCONTROL_CTRL_HXX
#define _UNOCONTROLS_BASECONTAINERCONTROL_CTRL_HXX
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
-
#include <com/sun/star/lang/XServiceName.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/container/XContainer.hpp>
@@ -36,9 +32,6 @@
#include <com/sun/star/container/XNameContainer.hpp>
#include <vector>
-//____________________________________________________________________________________________________________
-// includes of my own project
-//____________________________________________________________________________________________________________
#include "basecontrol.hxx"
//____________________________________________________________________________________________________________
diff --git a/UnoControls/inc/basecontrol.hxx b/UnoControls/inc/basecontrol.hxx
index 65bcf5aaf139..9ec160cc6519 100644
--- a/UnoControls/inc/basecontrol.hxx
+++ b/UnoControls/inc/basecontrol.hxx
@@ -20,10 +20,6 @@
#ifndef _UNOCONTROLS_BASECONTROL_CTRL_HXX
#define _UNOCONTROLS_BASECONTROL_CTRL_HXX
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
-
#include <com/sun/star/awt/XKeyListener.hpp>
#include <com/sun/star/awt/XPaintListener.hpp>
#include <com/sun/star/awt/KeyEvent.hpp>
@@ -91,9 +87,6 @@
#include <cppuhelper/weak.hxx>
#include <cppuhelper/component.hxx>
-//____________________________________________________________________________________________________________
-// includes of my project
-//____________________________________________________________________________________________________________
#include "multiplexer.hxx"
//____________________________________________________________________________________________________________
diff --git a/UnoControls/inc/multiplexer.hxx b/UnoControls/inc/multiplexer.hxx
index fa481b288fb3..9d1fdba51e63 100644
--- a/UnoControls/inc/multiplexer.hxx
+++ b/UnoControls/inc/multiplexer.hxx
@@ -20,10 +20,6 @@
#ifndef _UNOCONTROLS_MULTIPLEXER_HXX
#define _UNOCONTROLS_MULTIPLEXER_HXX
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
-
#include <com/sun/star/awt/XKeyListener.hpp>
#include <com/sun/star/awt/XPaintListener.hpp>
#include <com/sun/star/awt/KeyEvent.hpp>
@@ -49,9 +45,6 @@
#include <com/sun/star/awt/PosSize.hpp>
#include <cppuhelper/weak.hxx>
#include <cppuhelper/interfacecontainer.hxx>
-//____________________________________________________________________________________________________________
-// includes of my own project
-//____________________________________________________________________________________________________________
//____________________________________________________________________________________________________________
// "namespaces"
diff --git a/UnoControls/source/base/basecontainercontrol.cxx b/UnoControls/source/base/basecontainercontrol.cxx
index 1dba2e4b537a..83bedbf3cfc5 100644
--- a/UnoControls/source/base/basecontainercontrol.cxx
+++ b/UnoControls/source/base/basecontainercontrol.cxx
@@ -17,22 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//____________________________________________________________________________________________________________
-// my own includes
-//____________________________________________________________________________________________________________
-
#include "basecontainercontrol.hxx"
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
#include <cppuhelper/typeprovider.hxx>
//____________________________________________________________________________________________________________
-// includes of my own project
-//____________________________________________________________________________________________________________
-
-//____________________________________________________________________________________________________________
// namespaces
//____________________________________________________________________________________________________________
diff --git a/UnoControls/source/base/basecontrol.cxx b/UnoControls/source/base/basecontrol.cxx
index 6d48c7bd2227..e600fd0713ba 100644
--- a/UnoControls/source/base/basecontrol.cxx
+++ b/UnoControls/source/base/basecontrol.cxx
@@ -17,15 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//____________________________________________________________________________________________________________
-// my own include
-//____________________________________________________________________________________________________________
-
#include "basecontrol.hxx"
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
#include <com/sun/star/awt/XDevice.hpp>
#include <com/sun/star/awt/XDisplayBitmap.hpp>
#include <com/sun/star/awt/DeviceInfo.hpp>
@@ -34,10 +27,6 @@
#include <cppuhelper/typeprovider.hxx>
//____________________________________________________________________________________________________________
-// includes of my own project
-//____________________________________________________________________________________________________________
-
-//____________________________________________________________________________________________________________
// namespaces
//____________________________________________________________________________________________________________
diff --git a/UnoControls/source/base/registercontrols.cxx b/UnoControls/source/base/registercontrols.cxx
index 50dd26c279b5..4d659f465a38 100644
--- a/UnoControls/source/base/registercontrols.cxx
+++ b/UnoControls/source/base/registercontrols.cxx
@@ -17,10 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//______________________________________________________________________________________________________________
-// includes of other projects
-//______________________________________________________________________________________________________________
-
#include <cppuhelper/factory.hxx>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
@@ -29,10 +25,6 @@
#include <stdio.h>
-//______________________________________________________________________________________________________________
-// includes of my own project
-//______________________________________________________________________________________________________________
-
//=============================================================================
// Add new include line to use new services.
//=============================================================================
diff --git a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx
index c20854c56c0d..9e26a8a44b02 100644
--- a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx
+++ b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx
@@ -17,19 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//______________________________________________________________________________________________________________
-// my own include
-//______________________________________________________________________________________________________________
-
#include "OConnectionPointContainerHelper.hxx"
-//______________________________________________________________________________________________________________
-// includes of other projects
-//______________________________________________________________________________________________________________
-
-//______________________________________________________________________________________________________________
-// include of my own project
-//______________________________________________________________________________________________________________
#include "OConnectionPointHelper.hxx"
//______________________________________________________________________________________________________________
diff --git a/UnoControls/source/controls/OConnectionPointHelper.cxx b/UnoControls/source/controls/OConnectionPointHelper.cxx
index 21c51f42c2e7..eb9229627e53 100644
--- a/UnoControls/source/controls/OConnectionPointHelper.cxx
+++ b/UnoControls/source/controls/OConnectionPointHelper.cxx
@@ -17,19 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//______________________________________________________________________________________________________________
-// my own include
-//______________________________________________________________________________________________________________
-
#include "OConnectionPointHelper.hxx"
-//______________________________________________________________________________________________________________
-// includes of other projects
-//______________________________________________________________________________________________________________
-
-//______________________________________________________________________________________________________________
-// include of my own project
-//______________________________________________________________________________________________________________
#include "OConnectionPointContainerHelper.hxx"
//______________________________________________________________________________________________________________
diff --git a/UnoControls/source/controls/framecontrol.cxx b/UnoControls/source/controls/framecontrol.cxx
index 2895e4616982..424f6a37e8a4 100644
--- a/UnoControls/source/controls/framecontrol.cxx
+++ b/UnoControls/source/controls/framecontrol.cxx
@@ -17,16 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
-//______________________________________________________________________________________________________________
-// my own include
-//______________________________________________________________________________________________________________
-
#include "framecontrol.hxx"
-//______________________________________________________________________________________________________________
-// includes of other projects
-//______________________________________________________________________________________________________________
#include <com/sun/star/frame/XDispatchProvider.hpp>
#include <com/sun/star/util/URLTransformer.hpp>
#include <com/sun/star/util/XURLTransformer.hpp>
@@ -38,10 +30,6 @@
#include <osl/diagnose.h>
//______________________________________________________________________________________________________________
-// include of my own project
-//______________________________________________________________________________________________________________
-
-//______________________________________________________________________________________________________________
// namespaces
//______________________________________________________________________________________________________________
diff --git a/UnoControls/source/controls/progressbar.cxx b/UnoControls/source/controls/progressbar.cxx
index fb647a8bc936..0b2487c42415 100644
--- a/UnoControls/source/controls/progressbar.cxx
+++ b/UnoControls/source/controls/progressbar.cxx
@@ -16,15 +16,9 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//____________________________________________________________________________________________________________
-// my own includes
-//____________________________________________________________________________________________________________
#include "progressbar.hxx"
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
#include <com/sun/star/awt/GradientStyle.hpp>
#include <com/sun/star/awt/RasterOperation.hpp>
#include <com/sun/star/awt/Gradient.hpp>
@@ -36,10 +30,6 @@
#include <limits.h>
//____________________________________________________________________________________________________________
-// includes of my project
-//____________________________________________________________________________________________________________
-
-//____________________________________________________________________________________________________________
// namespace
//____________________________________________________________________________________________________________
diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx
index 0b7c33a7e47f..b034f12df241 100644
--- a/UnoControls/source/controls/progressmonitor.cxx
+++ b/UnoControls/source/controls/progressmonitor.cxx
@@ -17,15 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//____________________________________________________________________________________________________________
-// my own includes
-//____________________________________________________________________________________________________________
-
#include "progressmonitor.hxx"
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
#include <com/sun/star/awt/GradientStyle.hpp>
#include <com/sun/star/awt/RasterOperation.hpp>
#include <com/sun/star/awt/Gradient.hpp>
@@ -35,9 +28,7 @@
#include <tools/debug.hxx>
#include <tools/solar.h>
#include <algorithm>
-//____________________________________________________________________________________________________________
-// includes of my project
-//____________________________________________________________________________________________________________
+
#include "progressbar.hxx"
//____________________________________________________________________________________________________________
diff --git a/UnoControls/source/controls/statusindicator.cxx b/UnoControls/source/controls/statusindicator.cxx
index f0908660890e..2602407e4220 100644
--- a/UnoControls/source/controls/statusindicator.cxx
+++ b/UnoControls/source/controls/statusindicator.cxx
@@ -17,22 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-//____________________________________________________________________________________________________________
-// my own includes
-//____________________________________________________________________________________________________________
-
#include "statusindicator.hxx"
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
#include <com/sun/star/awt/InvalidateStyle.hpp>
#include <com/sun/star/awt/WindowAttribute.hpp>
#include <cppuhelper/typeprovider.hxx>
-//____________________________________________________________________________________________________________
-// includes of my project
-//____________________________________________________________________________________________________________
#include "progressbar.hxx"
//____________________________________________________________________________________________________________
diff --git a/UnoControls/source/inc/OConnectionPointContainerHelper.hxx b/UnoControls/source/inc/OConnectionPointContainerHelper.hxx
index 66af0583576d..c3f60ad47eb5 100644
--- a/UnoControls/source/inc/OConnectionPointContainerHelper.hxx
+++ b/UnoControls/source/inc/OConnectionPointContainerHelper.hxx
@@ -20,20 +20,12 @@
#ifndef _OCONNECTIONPOINTCONTAINERHELPER_HXX
#define _OCONNECTIONPOINTCONTAINERHELPER_HXX
-//______________________________________________________________________________________________________________
-// includes of other projects
-//______________________________________________________________________________________________________________
-
#include <com/sun/star/lang/XConnectionPointContainer.hpp>
#include <com/sun/star/lang/XConnectionPoint.hpp>
#include <cppuhelper/weak.hxx>
#include <cppuhelper/propshlp.hxx>
//______________________________________________________________________________________________________________
-// includes of my own project
-//______________________________________________________________________________________________________________
-
-//______________________________________________________________________________________________________________
// namespaces
//______________________________________________________________________________________________________________
diff --git a/UnoControls/source/inc/OConnectionPointHelper.hxx b/UnoControls/source/inc/OConnectionPointHelper.hxx
index 9b7ad8f70a56..94256e3dd29b 100644
--- a/UnoControls/source/inc/OConnectionPointHelper.hxx
+++ b/UnoControls/source/inc/OConnectionPointHelper.hxx
@@ -20,18 +20,11 @@
#ifndef _OCONNECTIONPOINTHELPER_HXX
#define _OCONNECTIONPOINTHELPER_HXX
-//______________________________________________________________________________________________________________
-// includes of other projects
-//______________________________________________________________________________________________________________
-
#include <com/sun/star/lang/XConnectionPointContainer.hpp>
#include <com/sun/star/lang/XConnectionPoint.hpp>
#include <cppuhelper/weak.hxx>
#include <cppuhelper/propshlp.hxx>
-//______________________________________________________________________________________________________________
-// includes of my own project
-//______________________________________________________________________________________________________________
#include "OConnectionPointContainerHelper.hxx"
//______________________________________________________________________________________________________________
diff --git a/UnoControls/source/inc/framecontrol.hxx b/UnoControls/source/inc/framecontrol.hxx
index d67113392df7..52db066d325f 100644
--- a/UnoControls/source/inc/framecontrol.hxx
+++ b/UnoControls/source/inc/framecontrol.hxx
@@ -20,10 +20,6 @@
#ifndef _UNOCONTROLS_FRAMECONTROL_CTRL_HXX
#define _UNOCONTROLS_FRAMECONTROL_CTRL_HXX
-//______________________________________________________________________________________________________________
-// includes of other projects
-//______________________________________________________________________________________________________________
-
#include <com/sun/star/frame/XFrameActionListener.hpp>
#include <com/sun/star/frame/XComponentLoader.hpp>
#include <com/sun/star/frame/XFrame.hpp>
@@ -34,9 +30,6 @@
#include <com/sun/star/lang/XConnectionPointContainer.hpp>
#include <cppuhelper/propshlp.hxx>
-//______________________________________________________________________________________________________________
-// includes of my own project
-//______________________________________________________________________________________________________________
#include "basecontrol.hxx"
#include "OConnectionPointContainerHelper.hxx"
diff --git a/UnoControls/source/inc/progressbar.hxx b/UnoControls/source/inc/progressbar.hxx
index b23070833751..c71841118d0d 100644
--- a/UnoControls/source/inc/progressbar.hxx
+++ b/UnoControls/source/inc/progressbar.hxx
@@ -20,16 +20,9 @@
#ifndef _UNOCONTROLS_PROGRESSBAR_CTRL_HXX
#define _UNOCONTROLS_PROGRESSBAR_CTRL_HXX
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
-
#include <com/sun/star/lang/XServiceName.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
-//____________________________________________________________________________________________________________
-// includes of my own project
-//____________________________________________________________________________________________________________
#include "basecontrol.hxx"
//____________________________________________________________________________________________________________
diff --git a/UnoControls/source/inc/progressmonitor.hxx b/UnoControls/source/inc/progressmonitor.hxx
index 680f0958982c..6d72c4b37a13 100644
--- a/UnoControls/source/inc/progressmonitor.hxx
+++ b/UnoControls/source/inc/progressmonitor.hxx
@@ -20,10 +20,6 @@
#ifndef _UNOCONTROLS_PROGRESSMONITOR_CTRL_HXX
#define _UNOCONTROLS_PROGRESSMONITOR_CTRL_HXX
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
-
#include <com/sun/star/awt/XFileDialog.hpp>
#include <com/sun/star/awt/XTextComponent.hpp>
#include <com/sun/star/awt/XListBox.hpp>
@@ -65,9 +61,6 @@
#include <vector>
-//____________________________________________________________________________________________________________
-// includes of my own project
-//____________________________________________________________________________________________________________
#include "basecontainercontrol.hxx"
//____________________________________________________________________________________________________________
diff --git a/UnoControls/source/inc/statusindicator.hxx b/UnoControls/source/inc/statusindicator.hxx
index cb3595aaea5f..50f212a6f5cf 100644
--- a/UnoControls/source/inc/statusindicator.hxx
+++ b/UnoControls/source/inc/statusindicator.hxx
@@ -20,10 +20,6 @@
#ifndef _UNOCONTROLS_STATUSINDICATOR_CTRL_HXX
#define _UNOCONTROLS_STATUSINDICATOR_CTRL_HXX
-//____________________________________________________________________________________________________________
-// includes of other projects
-//____________________________________________________________________________________________________________
-
#include <com/sun/star/awt/XControlModel.hpp>
#include <com/sun/star/awt/XFixedText.hpp>
#include <com/sun/star/awt/XGraphics.hpp>
@@ -34,9 +30,6 @@
#include <com/sun/star/awt/XWindowPeer.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
-//____________________________________________________________________________________________________________
-// includes of my own project
-//____________________________________________________________________________________________________________
#include "basecontainercontrol.hxx"
//____________________________________________________________________________________________________________