summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/propertystorage.cxx
diff options
context:
space:
mode:
authorOcke Janssen [oj] <Ocke.Janssen@oracle.com>2011-04-14 10:03:55 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-06-17 14:35:26 +0200
commit3c93ed792e9c5a0871973731063eb579d665f645 (patch)
tree3197639292fd12478780bc71f297e6e9a7378339 /dbaccess/source/ui/misc/propertystorage.cxx
parent22a4c2db80f641277fd960d57776373fa3ae517a (diff)
gnumake4: converted dbaccess [hg:8113b354673f]
Diffstat (limited to 'dbaccess/source/ui/misc/propertystorage.cxx')
-rw-r--r--dbaccess/source/ui/misc/propertystorage.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/misc/propertystorage.cxx b/dbaccess/source/ui/misc/propertystorage.cxx
index 83ac5d36bd30..cb7def0fedf2 100644
--- a/dbaccess/source/ui/misc/propertystorage.cxx
+++ b/dbaccess/source/ui/misc/propertystorage.cxx
@@ -26,7 +26,7 @@
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_dbaccess.hxx"
+#include "precompiled_dbui.hxx"
#include "propertystorage.hxx"
@@ -68,7 +68,7 @@ namespace dbaui
namespace
{
//----------------------------------------------------------------
- template < class ITEMTYPE, class UNOTYPE >
+ template < class ITEMTYPE, class UNOTYPE_Type >
class ItemAdapter
{
public:
@@ -79,7 +79,7 @@ namespace dbaui
if ( !pTypedItem )
return false;
- UNOTYPE aValue( pTypedItem->GetValue() );
+ UNOTYPE_Type aValue( pTypedItem->GetValue() );
OSL_VERIFY( _rValue >>= aValue );
// TODO: one could throw an IllegalArgumentException here - finally, this method
// is (to be) used from within an XPropertySet::setPropertyValue implementation,
@@ -96,7 +96,7 @@ namespace dbaui
if ( !pTypedItem )
return false;
- _out_rValue <<= UNOTYPE( pTypedItem->GetValue() );
+ _out_rValue <<= UNOTYPE_Type( pTypedItem->GetValue() );
return true;
}
};