diff options
author | Jelle van der Waa <jelle@vdwaa.nl> | 2013-08-17 23:43:14 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2013-08-27 16:11:09 +0000 |
commit | 2ec606730bc95b58390a609df0a88958869a4066 (patch) | |
tree | 9c530b3f6b200305ba224dda2d02c9bf5aca2233 /dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx | |
parent | 434f3c8e7fac0644cfe1d7a15f97f0c267bac048 (diff) |
fdo#62475 removed pointless comments
Conflicts:
dbaccess/source/filter/xml/xmlfilter.cxx
dbaccess/source/ui/dlg/ConnectionPage.cxx
dbaccess/source/ui/dlg/detailpages.cxx
dbaccess/source/ui/dlg/odbcconfig.cxx
dbaccess/source/ui/querydesign/querycontroller.cxx
Change-Id: I3a05649efa3a43dd8d8fb069fc1bce14ca0a6338
Reviewed-on: https://gerrit.libreoffice.org/5484
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx')
-rw-r--r-- | dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx b/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx index 3179e6259222..129e5454bd37 100644 --- a/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx +++ b/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx @@ -23,13 +23,10 @@ #include "dbu_qry.hrc" #include "SelectionBrowseBox.hxx" - namespace dbaui { - // ================================================================================================ // OQueryDesignFieldUndoAct - Basisclass for undo's in the fieldlist of a query design - class OQueryDesignFieldUndoAct : public OCommentUndoAction { protected: @@ -51,7 +48,6 @@ namespace dbaui } }; - // ================================================================================================ // OTabFieldCellModifiedUndoAct - undo class to change a line of the column description class OTabFieldCellModifiedUndoAct : public OQueryDesignFieldUndoAct @@ -72,7 +68,6 @@ namespace dbaui virtual void Redo() { Undo(); } }; - // ================================================================================================ // OTabFieldSizedUndoAct - undo class to change the column width class OTabFieldSizedUndoAct : public OQueryDesignFieldUndoAct @@ -89,7 +84,6 @@ namespace dbaui virtual void Redo() { Undo(); } }; - // ================================================================================================ // OTabFieldUndoAct - base class for undos in the fieldlist of a query design, which are used to change complete field descriptions class OTabFieldUndoAct : public OQueryDesignFieldUndoAct @@ -103,7 +97,6 @@ namespace dbaui void SetTabFieldDescr(OTableFieldDescRef pDescription) { pDescr = pDescription; } }; - // ================================================================================================ // OTabFieldDelUndoAct - undo class to delete a field class OTabFieldDelUndoAct : public OTabFieldUndoAct @@ -116,7 +109,6 @@ namespace dbaui OTabFieldDelUndoAct(OSelectionBrowseBox* pSelBrwBox) : OTabFieldUndoAct(pSelBrwBox, STR_QUERY_UNDO_TABFIELDDELETE) { } }; - // ================================================================================================ // OTabFieldDelUndoAct - Undo-Klasse fuer Anlegen eines Feldes // OTabFieldDelUndoAct - undo class to create a field @@ -130,7 +122,6 @@ namespace dbaui OTabFieldCreateUndoAct(OSelectionBrowseBox* pSelBrwBox) : OTabFieldUndoAct(pSelBrwBox, STR_QUERY_UNDO_TABFIELDCREATE) { } }; - // ================================================================================================ // OTabFieldMovedUndoAct - Undo class when a field was moved inside the selection class OTabFieldMovedUndoAct : public OTabFieldUndoAct @@ -148,6 +139,4 @@ namespace dbaui } #endif // DBAUI_QUERYDESIGNFIELDUNDOACT_HXX - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |