summaryrefslogtreecommitdiffstats
path: root/extensions/source/bibliography/bibview.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-01-09 21:35:46 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-01-09 21:36:51 +0100
commit4b1db520a032635afcde2b65369ab4722bfc862e (patch)
treee670c84cb6225a0ef28fc967ece378272b734f60 /extensions/source/bibliography/bibview.cxx
parentsecond try with wcscpy() (diff)
downloadcore-4b1db520a032635afcde2b65369ab4722bfc862e.tar.gz
core-4b1db520a032635afcde2b65369ab4722bfc862e.zip
extensions: kill no longer needed C2U and C2S
Diffstat (limited to 'extensions/source/bibliography/bibview.cxx')
-rw-r--r--extensions/source/bibliography/bibview.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/extensions/source/bibliography/bibview.cxx b/extensions/source/bibliography/bibview.cxx
index e219d91d2b91..dac90718d065 100644
--- a/extensions/source/bibliography/bibview.cxx
+++ b/extensions/source/bibliography/bibview.cxx
@@ -42,8 +42,6 @@ using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::uno;
-#define C2U( cChar ) ::rtl::OUString::createFromAscii( cChar )
-
//.........................................................................
namespace bib
{
@@ -74,14 +72,14 @@ namespace bib
if ( xResUpd.is() )
{
- Any aModified = xProps->getPropertyValue( C2U( "IsModified" ) );
+ Any aModified = xProps->getPropertyValue( "IsModified" );
sal_Bool bFlag = sal_False;
if ( ( aModified >>= bFlag ) && bFlag )
{
try
{
- Any aNew = xProps->getPropertyValue( C2U( "IsNew" ) );
+ Any aNew = xProps->getPropertyValue( "IsNew" );
aNew >>= bFlag;
if ( bFlag )
xResUpd->insertRow();