summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/content.cxx
diff options
context:
space:
mode:
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 )
{