summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/content.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/content.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/content.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/content.cxx46
1 files changed, 0 insertions, 46 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/content.cxx b/xmlhelp/source/cxxhelp/provider/content.cxx
index 04837f2deed9..7a844936a45c 100644
--- a/xmlhelp/source/cxxhelp/provider/content.cxx
+++ b/xmlhelp/source/cxxhelp/provider/content.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
/**************************************************************************
TODO
**************************************************************************
@@ -52,13 +51,7 @@
using namespace com::sun::star;
using namespace chelp;
-//=========================================================================
-//=========================================================================
-//
// Content Implementation.
-//
-//=========================================================================
-//=========================================================================
Content::Content( const uno::Reference< uno::XComponentContext >& rxContext,
::ucbhelper::ContentProviderImplHelper* pProvider,
@@ -71,17 +64,12 @@ Content::Content( const uno::Reference< uno::XComponentContext >& rxContext,
{
}
-//=========================================================================
// virtual
Content::~Content()
{
}
-//=========================================================================
-//
// XInterface methods.
-//
-//=========================================================================
// virtual
void SAL_CALL Content::acquire()
@@ -90,7 +78,6 @@ void SAL_CALL Content::acquire()
ContentImplHelper::acquire();
}
-//=========================================================================
// virtual
void SAL_CALL Content::release()
throw( )
@@ -98,7 +85,6 @@ void SAL_CALL Content::release()
ContentImplHelper::release();
}
-//=========================================================================
// virtual
uno::Any SAL_CALL Content::queryInterface( const uno::Type & rType )
throw ( uno::RuntimeException )
@@ -107,15 +93,10 @@ uno::Any SAL_CALL Content::queryInterface( const uno::Type & rType )
return aRet.hasValue() ? aRet : ContentImplHelper::queryInterface( rType );
}
-//=========================================================================
-//
// XTypeProvider methods.
-//
-//=========================================================================
XTYPEPROVIDER_COMMON_IMPL( Content );
-//=========================================================================
// virtual
uno::Sequence< uno::Type > SAL_CALL Content::getTypes()
throw( uno::RuntimeException )
@@ -145,11 +126,7 @@ uno::Sequence< uno::Type > SAL_CALL Content::getTypes()
return (*pCollection).getTypes();
}
-//=========================================================================
-//
// XServiceInfo methods.
-//
-//=========================================================================
// virtual
OUString SAL_CALL Content::getImplementationName()
@@ -158,7 +135,6 @@ OUString SAL_CALL Content::getImplementationName()
return OUString( "CHelpContent" );
}
-//=========================================================================
// virtual
uno::Sequence< OUString > SAL_CALL Content::getSupportedServiceNames()
throw( uno::RuntimeException )
@@ -169,11 +145,7 @@ uno::Sequence< OUString > SAL_CALL Content::getSupportedServiceNames()
return aSNS;
}
-//=========================================================================
-//
// XContent methods.
-//
-//=========================================================================
// virtual
OUString SAL_CALL Content::getContentType()
@@ -182,11 +154,7 @@ OUString SAL_CALL Content::getContentType()
return OUString( MYUCP_CONTENT_TYPE );
}
-//=========================================================================
-//
// XCommandProcessor methods.
-//
-//=========================================================================
//virtual
void SAL_CALL Content::abort( sal_Int32 /*CommandId*/ )
@@ -194,8 +162,6 @@ void SAL_CALL Content::abort( sal_Int32 /*CommandId*/ )
{
}
-
-
class ResultSetForRootFactory
: public ResultSetFactory
{
@@ -209,7 +175,6 @@ private:
URLParameter m_aURLParameter;
Databases* m_pDatabases;
-
public:
ResultSetForRootFactory(
@@ -242,8 +207,6 @@ public:
}
};
-
-
class ResultSetForQueryFactory
: public ResultSetFactory
{
@@ -257,7 +220,6 @@ private:
URLParameter m_aURLParameter;
Databases* m_pDatabases;
-
public:
ResultSetForQueryFactory(
@@ -290,8 +252,6 @@ public:
}
};
-
-
// virtual
uno::Any SAL_CALL Content::execute(
const ucb::Command& aCommand,
@@ -421,9 +381,7 @@ uno::Any SAL_CALL Content::execute(
}
else
{
- //////////////////////////////////////////////////////////////////
// Unsupported command
- //////////////////////////////////////////////////////////////////
aRet <<= ucb::UnsupportedCommandException();
ucbhelper::cancelCommandExecution(aRet,Environment);
}
@@ -431,10 +389,6 @@ uno::Any SAL_CALL Content::execute(
return aRet;
}
-
-
-
-//=========================================================================
uno::Reference< sdbc::XRow > Content::getPropertyValues(
const uno::Sequence< beans::Property >& rProperties )
{