summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/propertystorage.cxx
diff options
context:
space:
mode:
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 f4d54c4f4..5b55d8dda 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;
}
};