summaryrefslogtreecommitdiff
path: root/forms/source/component
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-06-28 12:28:46 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-06-29 09:25:09 +0200
commit57154616f064752c237a278db18767241da13c3f (patch)
treec105cd45b095b2580c4d9ffec69a49dda8089d9b /forms/source/component
parent59c8cfffa75d991e3fac8b3cb41dde31389bb8c1 (diff)
Remove UNO includes comments
Change-Id: I48e193322967fb75e93eaf81e9e2110d3056f92a
Diffstat (limited to 'forms/source/component')
-rw-r--r--forms/source/component/Columns.hxx2
-rw-r--r--forms/source/component/ComboBox.cxx2
-rw-r--r--forms/source/component/ComboBox.hxx2
-rw-r--r--forms/source/component/Filter.cxx2
-rw-r--r--forms/source/component/FormComponent.cxx2
-rw-r--r--forms/source/component/Grid.cxx2
-rw-r--r--forms/source/component/Grid.hxx2
-rw-r--r--forms/source/component/ListBox.cxx2
-rw-r--r--forms/source/component/ListBox.hxx2
-rw-r--r--forms/source/component/Pattern.cxx4
-rw-r--r--forms/source/component/cachedrowset.cxx2
-rw-r--r--forms/source/component/cachedrowset.hxx2
-rw-r--r--forms/source/component/entrylisthelper.hxx2
-rw-r--r--forms/source/component/propertybaghelper.cxx2
-rw-r--r--forms/source/component/refvaluecomponent.cxx3
-rw-r--r--forms/source/component/refvaluecomponent.hxx3
16 files changed, 0 insertions, 36 deletions
diff --git a/forms/source/component/Columns.hxx b/forms/source/component/Columns.hxx
index 1a6f1ad745bd..ec691038141d 100644
--- a/forms/source/component/Columns.hxx
+++ b/forms/source/component/Columns.hxx
@@ -32,12 +32,10 @@
#include "cloneable.hxx"
#include "frm_strings.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/io/XObjectInputStream.hpp>
#include <com/sun/star/io/XObjectOutputStream.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <com/sun/star/util/XCloneable.hpp>
-/** === end UNO includes === **/
#include <comphelper/broadcasthelper.hxx>
#include <comphelper/componentcontext.hxx>
diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx
index 7a2c4d4aef08..c08054822470 100644
--- a/forms/source/component/ComboBox.cxx
+++ b/forms/source/component/ComboBox.cxx
@@ -36,7 +36,6 @@
#include "frm_resource.hrc"
#include "BaseListBox.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/sdb/SQLErrorEvent.hpp>
#include <com/sun/star/sdbc/XRowSet.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
@@ -47,7 +46,6 @@
#include <com/sun/star/sdbc/XConnection.hpp>
#include <com/sun/star/sdb/SQLContext.hpp>
#include <com/sun/star/sdb/CommandType.hpp>
-/** === end UNO includes === **/
#include <comphelper/numbers.hxx>
#include <comphelper/basicio.hxx>
diff --git a/forms/source/component/ComboBox.hxx b/forms/source/component/ComboBox.hxx
index 78941877e3c4..8adbfeb2ca34 100644
--- a/forms/source/component/ComboBox.hxx
+++ b/forms/source/component/ComboBox.hxx
@@ -34,13 +34,11 @@
#include "entrylisthelper.hxx"
#include "cachedrowset.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/util/XNumberFormatter.hpp>
#include <com/sun/star/sdb/XSQLErrorBroadcaster.hpp>
#include <com/sun/star/form/ListSourceType.hpp>
#include <com/sun/star/awt/XItemListener.hpp>
#include <com/sun/star/awt/XFocusListener.hpp>
-/** === end UNO includes === **/
#include <connectivity/formattedcolumnvalue.hxx>
diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx
index c63d60bd8e66..cb2ac2a50249 100644
--- a/forms/source/component/Filter.cxx
+++ b/forms/source/component/Filter.cxx
@@ -34,7 +34,6 @@
#include "property.hrc"
#include "property.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/awt/VclWindowPeerAttribute.hpp>
#include <com/sun/star/awt/XCheckBox.hpp>
#include <com/sun/star/awt/XComboBox.hpp>
@@ -55,7 +54,6 @@
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
#include <com/sun/star/awt/XItemList.hpp>
-/** === end UNO includes === **/
#include <comphelper/numbers.hxx>
#include <comphelper/property.hxx>
diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx
index 291384948ebe..27600cfe8cbc 100644
--- a/forms/source/component/FormComponent.cxx
+++ b/forms/source/component/FormComponent.cxx
@@ -34,7 +34,6 @@
#include "property.hrc"
#include "services.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/awt/XTextComponent.hpp>
#include <com/sun/star/awt/XVclWindowPeer.hpp>
#include <com/sun/star/awt/XWindow.hpp>
@@ -47,7 +46,6 @@
#include <com/sun/star/sdbc/ColumnValue.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/util/XModifyBroadcaster.hpp>
-/** === end UNO includes === **/
#include <comphelper/basicio.hxx>
#include <comphelper/guarding.hxx>
diff --git a/forms/source/component/Grid.cxx b/forms/source/component/Grid.cxx
index 01e0c0d2166a..9c71efbe432c 100644
--- a/forms/source/component/Grid.cxx
+++ b/forms/source/component/Grid.cxx
@@ -34,12 +34,10 @@
#include "property.hxx"
#include "services.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/form/FormComponentType.hpp>
#include <com/sun/star/form/XForm.hpp>
#include <com/sun/star/form/XLoadable.hpp>
#include <com/sun/star/text/WritingMode2.hpp>
-/** === end UNO includes === **/
#include <comphelper/basicio.hxx>
#include <comphelper/container.hxx>
diff --git a/forms/source/component/Grid.hxx b/forms/source/component/Grid.hxx
index dc5f16e39694..f29e6be26d1c 100644
--- a/forms/source/component/Grid.hxx
+++ b/forms/source/component/Grid.hxx
@@ -22,13 +22,11 @@
#include "formcontrolfont.hxx"
#include "InterfaceContainer.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/form/XGridColumnFactory.hpp>
#include <com/sun/star/form/XLoadable.hpp>
#include <com/sun/star/sdb/XRowSetSupplier.hpp>
#include <com/sun/star/sdb/XRowSetChangeBroadcaster.hpp>
#include <com/sun/star/view/XSelectionSupplier.hpp>
-/** === end UNO includes === **/
#include <comphelper/proparrhlp.hxx>
#include <cppuhelper/implbase7.hxx>
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 84bf9ff22059..f152d5a1951b 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -37,7 +37,6 @@
#include "listenercontainers.hxx"
#include "componenttools.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/util/XNumberFormatTypes.hpp>
#include <com/sun/star/sdbc/XRowSet.hpp>
#include <com/sun/star/container/XIndexAccess.hpp>
@@ -47,7 +46,6 @@
#include <com/sun/star/awt/XWindow.hpp>
#include <com/sun/star/sdbc/XConnection.hpp>
#include <com/sun/star/sdb/CommandType.hpp>
-/** === end UNO includes === **/
#include <comphelper/basicio.hxx>
#include <comphelper/container.hxx>
diff --git a/forms/source/component/ListBox.hxx b/forms/source/component/ListBox.hxx
index 0eb833ce89fd..2c696c3f6781 100644
--- a/forms/source/component/ListBox.hxx
+++ b/forms/source/component/ListBox.hxx
@@ -34,7 +34,6 @@
#include "errorbroadcaster.hxx"
#include "entrylisthelper.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/util/XNumberFormatter.hpp>
#include <com/sun/star/sdb/XSQLErrorBroadcaster.hpp>
#include <com/sun/star/form/ListSourceType.hpp>
@@ -43,7 +42,6 @@
#include <com/sun/star/awt/XListBox.hpp>
#include <com/sun/star/form/XChangeBroadcaster.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
-/** === end UNO includes === **/
#include <comphelper/asyncnotification.hxx>
#include <connectivity/FValue.hxx>
diff --git a/forms/source/component/Pattern.cxx b/forms/source/component/Pattern.cxx
index 55aea67e95c9..bbec5bf779a2 100644
--- a/forms/source/component/Pattern.cxx
+++ b/forms/source/component/Pattern.cxx
@@ -26,12 +26,8 @@
*
************************************************************************/
-
#include "Pattern.hxx"
-/** === begin UNO includes === **/
-/** === end UNO includes === **/
-
//.........................................................................
namespace frm
{
diff --git a/forms/source/component/cachedrowset.cxx b/forms/source/component/cachedrowset.cxx
index f914581907f1..0d7c91bef43b 100644
--- a/forms/source/component/cachedrowset.cxx
+++ b/forms/source/component/cachedrowset.cxx
@@ -22,12 +22,10 @@
#include "services.hxx"
#include "frm_strings.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/sdb/XQueriesSupplier.hpp>
#include <com/sun/star/sdbc/ResultSetType.hpp>
-/** === end UNO includes === **/
#include <tools/diagnose_ex.h>
diff --git a/forms/source/component/cachedrowset.hxx b/forms/source/component/cachedrowset.hxx
index b3d18178f73d..15443e547cd8 100644
--- a/forms/source/component/cachedrowset.hxx
+++ b/forms/source/component/cachedrowset.hxx
@@ -20,10 +20,8 @@
#ifndef CACHEDROWSET_HXX
#define CACHEDROWSET_HXX
-/** === begin UNO includes === **/
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <com/sun/star/sdbc/XConnection.hpp>
-/** === end UNO includes === **/
#include <comphelper/componentcontext.hxx>
#include <unotools/sharedunocomponent.hxx>
diff --git a/forms/source/component/entrylisthelper.hxx b/forms/source/component/entrylisthelper.hxx
index 34807f70b9b0..929b5a5cd1e5 100644
--- a/forms/source/component/entrylisthelper.hxx
+++ b/forms/source/component/entrylisthelper.hxx
@@ -20,12 +20,10 @@
#ifndef FORMS_ENTRYLISTHELPER_HXX
#define FORMS_ENTRYLISTHELPER_HXX
-/** === begin UNO includes === **/
#include <com/sun/star/form/binding/XListEntrySink.hpp>
#include <com/sun/star/util/XRefreshable.hpp>
#include <com/sun/star/form/binding/XListEntryListener.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
-/** === end UNO includes === **/
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/interfacecontainer.hxx>
diff --git a/forms/source/component/propertybaghelper.cxx b/forms/source/component/propertybaghelper.cxx
index e0ca22a01a1a..a9ababe50048 100644
--- a/forms/source/component/propertybaghelper.cxx
+++ b/forms/source/component/propertybaghelper.cxx
@@ -21,13 +21,11 @@
#include "property.hxx"
-/** === begin UNO includes === **/
#include <com/sun/star/lang/DisposedException.hpp>
#include <com/sun/star/beans/PropertyExistException.hpp>
#include <com/sun/star/beans/XMultiPropertySet.hpp>
#include <com/sun/star/beans/NotRemoveableException.hpp>
#include <com/sun/star/beans/UnknownPropertyException.hpp>
-/** === end UNO includes === **/
#include <tools/diagnose_ex.h>
diff --git a/forms/source/component/refvaluecomponent.cxx b/forms/source/component/refvaluecomponent.cxx
index 5950a854e4ff..ada07d95b89b 100644
--- a/forms/source/component/refvaluecomponent.cxx
+++ b/forms/source/component/refvaluecomponent.cxx
@@ -28,9 +28,6 @@
#include "refvaluecomponent.hxx"
-/** === begin UNO includes === **/
-/** === end UNO includes === **/
-
#include <tools/diagnose_ex.h>
#include <list>
diff --git a/forms/source/component/refvaluecomponent.hxx b/forms/source/component/refvaluecomponent.hxx
index 1acad8c17cf7..c0a10ea857d8 100644
--- a/forms/source/component/refvaluecomponent.hxx
+++ b/forms/source/component/refvaluecomponent.hxx
@@ -23,9 +23,6 @@
#include "FormComponent.hxx"
#include "togglestate.hxx"
-/** === begin UNO includes === **/
-/** === end UNO includes === **/
-
//........................................................................
namespace frm
{