summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/queryorder.cxx
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2012-08-10 20:50:33 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2012-08-10 20:56:25 +0200
commit25a56559db5d7dbf6ebee979b0b1aaf6be2a64e3 (patch)
tree5e3202806f3d275844b4c86f4b7ac727d4bfe197 /dbaccess/source/ui/dlg/queryorder.cxx
parent2058908d8ce86c9fec6db3ef3bc0be2ec20d1547 (diff)
cleaned-up comments
Files were originally touched by b803fa2579256979bac83f0b193f2c30d524d76b. This is just a follow-up patch. Change-Id: I1e35d5e3c3d193bb5dfdb4b743328d8d22466a4d
Diffstat (limited to 'dbaccess/source/ui/dlg/queryorder.cxx')
-rw-r--r--dbaccess/source/ui/dlg/queryorder.cxx19
1 files changed, 1 insertions, 18 deletions
diff --git a/dbaccess/source/ui/dlg/queryorder.cxx b/dbaccess/source/ui/dlg/queryorder.cxx
index fa05721e823c..67216909840c 100644
--- a/dbaccess/source/ui/dlg/queryorder.cxx
+++ b/dbaccess/source/ui/dlg/queryorder.cxx
@@ -19,9 +19,7 @@
#include "queryorder.hrc"
#include "queryorder.hxx"
-
#include "dbustrings.hrc"
-
#include <com/sun/star/sdb/XSingleSelectQueryComposer.hpp>
#include <com/sun/star/sdbc/ColumnSearch.hpp>
#include <com/sun/star/container/XNameAccess.hpp>
@@ -31,12 +29,9 @@
#include <connectivity/dbtools.hxx>
#include <comphelper/extract.hxx>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
-
#include <tools/diagnose_ex.h>
-
#include <algorithm>
-
using namespace dbaui;
using namespace connectivity;
using namespace ::com::sun::star::uno;
@@ -48,7 +43,7 @@ using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::beans;
DBG_NAME(DlgOrderCrit)
-//------------------------------------------------------------------------------
+
DlgOrderCrit::DlgOrderCrit( Window * pParent,
const Reference< XConnection>& _rxConnection,
const Reference< XSingleSelectQueryComposer >& _rxComposer,
@@ -140,16 +135,13 @@ DlgOrderCrit::DlgOrderCrit( Window * pParent,
aLB_ORDERFIELD2.SetSelectHdl(LINK(this,DlgOrderCrit,FieldListSelectHdl));
FreeResource();
-
}
-//------------------------------------------------------------------------------
DlgOrderCrit::~DlgOrderCrit()
{
DBG_DTOR(DlgOrderCrit,NULL);
}
-//------------------------------------------------------------------------------
IMPL_LINK_INLINE_START( DlgOrderCrit, FieldListSelectHdl, ListBox *, /*pListBox*/ )
{
DBG_CHKTHIS(DlgOrderCrit,NULL);
@@ -158,7 +150,6 @@ IMPL_LINK_INLINE_START( DlgOrderCrit, FieldListSelectHdl, ListBox *, /*pListBox*
}
IMPL_LINK_INLINE_END( DlgOrderCrit, FieldListSelectHdl, ListBox *, pListBox )
-//------------------------------------------------------------------------------
void DlgOrderCrit::impl_initializeOrderList_nothrow()
{
try
@@ -191,7 +182,6 @@ void DlgOrderCrit::impl_initializeOrderList_nothrow()
}
}
-//------------------------------------------------------------------------------
void DlgOrderCrit::EnableLines()
{
DBG_CHKTHIS(DlgOrderCrit,NULL);
@@ -225,7 +215,6 @@ void DlgOrderCrit::EnableLines()
}
}
-//------------------------------------------------------------------------------
::rtl::OUString DlgOrderCrit::GetOrderList( ) const
{
DBG_CHKTHIS(DlgOrderCrit,NULL);
@@ -278,16 +267,10 @@ void DlgOrderCrit::EnableLines()
return sOrder;
}
-//------------------------------------------------------------------------------
void DlgOrderCrit::BuildOrderPart()
{
DBG_CHKTHIS(DlgOrderCrit,NULL);
m_xQueryComposer->setOrder(GetOrderList());
}
-// -----------------------------------------------------------------------------
-
-
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */