summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultset.cxx
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2013-08-10 19:28:48 +0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-08-10 19:23:25 +0000
commit2f66b0cb110c2f7d864f96e850015aa1741e1f94 (patch)
tree8884d890732cb197925348a1392408ad3e26c686 /xmlhelp/source/cxxhelp/provider/resultset.cxx
parentd4ba5995a168a8999734252fe6e9240bde1b7dae (diff)
fdo#62475 removed pointless comments
Change-Id: I4fa01553246fa023806b3fec8e6e756a1efa59f1 Reviewed-on: https://gerrit.libreoffice.org/5342 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/resultset.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultset.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultset.cxx b/xmlhelp/source/cxxhelp/provider/resultset.cxx
index 64524eba9367..597392bf4380 100644
--- a/xmlhelp/source/cxxhelp/provider/resultset.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultset.cxx
@@ -27,16 +27,9 @@ using namespace com::sun::star::sdbc;
using namespace com::sun::star::ucb;
using namespace com::sun::star::uno;
-
using namespace chelp;
-//=========================================================================
-//=========================================================================
-//
// DynamicResultSet Implementation.
-//
-//=========================================================================
-//=========================================================================
DynamicResultSet::DynamicResultSet(
const Reference< XComponentContext >& rxContext,
@@ -56,18 +49,13 @@ DynamicResultSet::~DynamicResultSet()
delete m_pFactory;
}
-//=========================================================================
-//
// Non-interface methods.
-//
-//=========================================================================
void DynamicResultSet::initStatic()
{
m_xResultSet1 = Reference< XResultSet >( m_pFactory->createResultSet() );
}
-//=========================================================================
void DynamicResultSet::initDynamic()
{
m_xResultSet1 = Reference< XResultSet >( m_pFactory->createResultSet() );
@@ -75,7 +63,4 @@ void DynamicResultSet::initDynamic()
m_xResultSet2 = m_xResultSet1;
}
-
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */