summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/app/AppController.cxx
diff options
context:
space:
mode:
authorSantiago Alessandri <salessandri@nasel.com.ar>2010-11-11 17:20:24 -0300
committerDavid Tardon <dtardon@redhat.com>2010-11-12 08:12:31 +0100
commit7c26a84a582641c671b35516ef0e6edf63c3752f (patch)
tree142f100cdf7e9e1d73ad8de7380200ee88c5ebfe /dbaccess/source/ui/app/AppController.cxx
parentReplaced the use of createFromAscii for the macro RTL_CONSTASCII_USTRINGPARAM (diff)
downloadcore-7c26a84a582641c671b35516ef0e6edf63c3752f.tar.gz
core-7c26a84a582641c671b35516ef0e6edf63c3752f.zip
Changed usage of createFromAscii for macro RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'dbaccess/source/ui/app/AppController.cxx')
-rw-r--r--dbaccess/source/ui/app/AppController.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx
index 68d5aac5fa33..b782ebecab5a 100644
--- a/dbaccess/source/ui/app/AppController.cxx
+++ b/dbaccess/source/ui/app/AppController.cxx
@@ -194,7 +194,7 @@ namespace DatabaseObjectContainer = ::com::sun::star::sdb::application::Database
Sequence< ::rtl::OUString> OApplicationController::getSupportedServiceNames_Static(void) throw( RuntimeException )
{
Sequence< ::rtl::OUString> aSupported(1);
- aSupported.getArray()[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdb.application.DefaultViewController");
+ aSupported.getArray()[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.sdb.application.DefaultViewController"));
return aSupported;
}
//-------------------------------------------------------------------------