summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/misc/propertystorage.cxx
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2013-08-17 23:43:14 +0200
committerPetr Mladek <pmladek@suse.cz>2013-08-27 16:11:09 +0000
commit2ec606730bc95b58390a609df0a88958869a4066 (patch)
tree9c530b3f6b200305ba224dda2d02c9bf5aca2233 /dbaccess/source/ui/misc/propertystorage.cxx
parentuse ...IgnoreAsciiCase() (diff)
downloadcore-2ec606730bc95b58390a609df0a88958869a4066.tar.gz
core-2ec606730bc95b58390a609df0a88958869a4066.zip
fdo#62475 removed pointless comments
Conflicts: dbaccess/source/filter/xml/xmlfilter.cxx dbaccess/source/ui/dlg/ConnectionPage.cxx dbaccess/source/ui/dlg/detailpages.cxx dbaccess/source/ui/dlg/odbcconfig.cxx dbaccess/source/ui/querydesign/querycontroller.cxx Change-Id: I3a05649efa3a43dd8d8fb069fc1bce14ca0a6338 Reviewed-on: https://gerrit.libreoffice.org/5484 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'dbaccess/source/ui/misc/propertystorage.cxx')
-rw-r--r--dbaccess/source/ui/misc/propertystorage.cxx20
1 files changed, 3 insertions, 17 deletions
diff --git a/dbaccess/source/ui/misc/propertystorage.cxx b/dbaccess/source/ui/misc/propertystorage.cxx
index de79c6cc95d6..fd56ba1354c6 100644
--- a/dbaccess/source/ui/misc/propertystorage.cxx
+++ b/dbaccess/source/ui/misc/propertystorage.cxx
@@ -25,10 +25,8 @@
#include <memory>
-//........................................................................
namespace dbaui
{
-//........................................................................
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::XInterface;
@@ -38,20 +36,14 @@ namespace dbaui
using ::com::sun::star::uno::Any;
using ::com::sun::star::uno::makeAny;
- //====================================================================
- //= PropertyStorage
- //====================================================================
- //--------------------------------------------------------------------
+ // PropertyStorage
PropertyStorage::~PropertyStorage()
{
}
- //====================================================================
- //= helper
- //====================================================================
+ // helper
namespace
{
- //----------------------------------------------------------------
#undef UNOTYPE
template < class ITEMTYPE, class UNOTYPE >
class ItemAdapter
@@ -87,10 +79,7 @@ namespace dbaui
};
}
- //====================================================================
- //= SetItemPropertyStorage
- //====================================================================
- //--------------------------------------------------------------------
+ // SetItemPropertyStorage
void SetItemPropertyStorage::getPropertyValue( Any& _out_rValue ) const
{
const SfxPoolItem& rItem( m_rItemSet.Get( m_nItemID ) );
@@ -104,7 +93,6 @@ namespace dbaui
OSL_FAIL( "SetItemPropertyStorage::getPropertyValue: unsupported item type!" );
}
- //--------------------------------------------------------------------
void SetItemPropertyStorage::setPropertyValue( const Any& _rValue )
{
// try some known item types
@@ -116,8 +104,6 @@ namespace dbaui
OSL_FAIL( "SetItemPropertyStorage::setPropertyValue: unsupported item type!" );
}
-//........................................................................
} // namespace dbaui
-//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */