summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/tabledesign
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/tabledesign')
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx1
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescriptions.cxx1
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx1
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignView.cxx2
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldDescWin.cxx1
-rw-r--r--dbaccess/source/ui/tabledesign/TableRow.cxx1
-rw-r--r--dbaccess/source/ui/tabledesign/TableUndo.cxx8
7 files changed, 0 insertions, 15 deletions
diff --git a/dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx b/dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx
index bc9486b0a52c..1a052c19007a 100644
--- a/dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx
+++ b/dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx
@@ -27,7 +27,6 @@
using namespace dbaui;
-// class OFieldDescGenWin
OFieldDescGenWin::OFieldDescGenWin( vcl::Window* pParent, OTableDesignHelpBar* pHelp ) :
TabPage( pParent, WB_3DLOOK | WB_DIALOGCONTROL )
{
diff --git a/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx b/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
index 86499d13f15a..9f5428b04559 100644
--- a/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
+++ b/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
@@ -39,7 +39,6 @@ using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::util;
-// class OFieldDescription
OFieldDescription::OFieldDescription()
:m_pType()
,m_nType(DataType::VARCHAR)
diff --git a/dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx b/dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx
index 62d0f16c5314..bc2b3a489f10 100644
--- a/dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx
+++ b/dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx
@@ -25,7 +25,6 @@
#include <memory>
using namespace dbaui;
#define STANDARD_MARGIN 6
-// class OTableDesignHelpBar
OTableDesignHelpBar::OTableDesignHelpBar( vcl::Window* pParent ) :
TabPage( pParent, WB_3DLOOK )
{
diff --git a/dbaccess/source/ui/tabledesign/TableDesignView.cxx b/dbaccess/source/ui/tabledesign/TableDesignView.cxx
index 60684bd6f7ea..b5d8bc4d1c34 100644
--- a/dbaccess/source/ui/tabledesign/TableDesignView.cxx
+++ b/dbaccess/source/ui/tabledesign/TableDesignView.cxx
@@ -39,7 +39,6 @@ using namespace ::com::sun::star::datatransfer::clipboard;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::beans;
-// class OTableBorderWindow
OTableBorderWindow::OTableBorderWindow(vcl::Window* pParent) : Window(pParent,WB_BORDER)
,m_aHorzSplitter( VclPtr<Splitter>::Create(this) )
{
@@ -156,7 +155,6 @@ void OTableBorderWindow::GetFocus()
m_pEditorCtrl->GrabFocus();
}
-// class OTableDesignView
OTableDesignView::OTableDesignView( vcl::Window* pParent,
const Reference< XComponentContext >& _rxOrb,
OTableController& _rController
diff --git a/dbaccess/source/ui/tabledesign/TableFieldDescWin.cxx b/dbaccess/source/ui/tabledesign/TableFieldDescWin.cxx
index 8e80e52fb1a3..9507507949e1 100644
--- a/dbaccess/source/ui/tabledesign/TableFieldDescWin.cxx
+++ b/dbaccess/source/ui/tabledesign/TableFieldDescWin.cxx
@@ -44,7 +44,6 @@
#define DETAILS_OPT_HELP_HEIGHT 100
using namespace dbaui;
-// class OTableFieldDescWin
OTableFieldDescWin::OTableFieldDescWin( vcl::Window* pParent)
: TabPage(pParent, WB_3DLOOK)
, m_eChildFocus(NONE)
diff --git a/dbaccess/source/ui/tabledesign/TableRow.cxx b/dbaccess/source/ui/tabledesign/TableRow.cxx
index 1b52a530bb84..e33ace04874f 100644
--- a/dbaccess/source/ui/tabledesign/TableRow.cxx
+++ b/dbaccess/source/ui/tabledesign/TableRow.cxx
@@ -28,7 +28,6 @@ using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
-// class OTableRow
OTableRow::OTableRow()
:m_pActFieldDescr( nullptr )
,m_nPos( -1 )
diff --git a/dbaccess/source/ui/tabledesign/TableUndo.cxx b/dbaccess/source/ui/tabledesign/TableUndo.cxx
index 61f0e02cfc03..87baeb3cc80a 100644
--- a/dbaccess/source/ui/tabledesign/TableUndo.cxx
+++ b/dbaccess/source/ui/tabledesign/TableUndo.cxx
@@ -30,7 +30,6 @@ using namespace dbaui;
using namespace ::svt;
-// class OTableDesignUndoAct
OTableDesignUndoAct::OTableDesignUndoAct(OTableRowView* pOwner, const char* pCommentID)
: OCommentUndoAction(pCommentID)
, m_pTabDgnCtrl(pOwner)
@@ -66,7 +65,6 @@ void OTableDesignUndoAct::Redo()
}
}
-// class OTableDesignCellUndoAct
OTableDesignCellUndoAct::OTableDesignCellUndoAct( OTableRowView* pOwner, long nRowID, sal_uInt16 nColumn ) :
OTableDesignUndoAct( pOwner ,STR_TABED_UNDO_CELLMODIFIED)
,m_nCol( nColumn )
@@ -108,7 +106,6 @@ void OTableDesignCellUndoAct::Redo()
OTableDesignUndoAct::Redo();
}
-// class OTableEditorUndoAct
OTableEditorUndoAct::OTableEditorUndoAct(OTableEditorCtrl* pOwner, const char* pCommentID)
: OTableDesignUndoAct(pOwner, pCommentID)
, pTabEdCtrl(pOwner)
@@ -119,7 +116,6 @@ OTableEditorUndoAct::~OTableEditorUndoAct()
{
}
-// class OTableEditorTypeSelUndoAct
OTableEditorTypeSelUndoAct::OTableEditorTypeSelUndoAct( OTableEditorCtrl* pOwner, long nRowID, sal_uInt16 nColumn, const TOTypeInfoSP& _pOldType )
:OTableEditorUndoAct( pOwner ,STR_TABED_UNDO_TYPE_CHANGED)
,m_nCol( nColumn )
@@ -155,7 +151,6 @@ void OTableEditorTypeSelUndoAct::Redo()
OTableEditorUndoAct::Redo();
}
-// class OTableEditorDelUndoAct
OTableEditorDelUndoAct::OTableEditorDelUndoAct( OTableEditorCtrl* pOwner) :
OTableEditorUndoAct( pOwner ,STR_TABED_UNDO_ROWDELETED)
{
@@ -216,7 +211,6 @@ void OTableEditorDelUndoAct::Redo()
OTableEditorUndoAct::Redo();
}
-// class OTableEditorInsUndoAct
OTableEditorInsUndoAct::OTableEditorInsUndoAct( OTableEditorCtrl* pOwner,
long nInsertPosition ,
const std::vector< std::shared_ptr<OTableRow> >& _vInsertedRows)
@@ -262,7 +256,6 @@ void OTableEditorInsUndoAct::Redo()
OTableEditorUndoAct::Redo();
}
-// class OTableEditorInsNewUndoAct
OTableEditorInsNewUndoAct::OTableEditorInsNewUndoAct( OTableEditorCtrl* pOwner, long nInsertPosition, long nInsertedRows ) :
OTableEditorUndoAct( pOwner ,STR_TABED_UNDO_NEWROWINSERTED)
,m_nInsPos( nInsertPosition )
@@ -301,7 +294,6 @@ void OTableEditorInsNewUndoAct::Redo()
OTableEditorUndoAct::Redo();
}
-// class OPrimKeyUndoAct
OPrimKeyUndoAct::OPrimKeyUndoAct( OTableEditorCtrl* pOwner, const MultiSelection& aDeletedKeys, const MultiSelection& aInsertedKeys) :
OTableEditorUndoAct( pOwner ,STR_TABLEDESIGN_UNDO_PRIMKEY)
,m_aDelKeys( aDeletedKeys )