[Libreoffice-commits] .: Branch 'libreoffice-4-0' - cui/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Dec 5 00:48:37 PST 2012


 cui/source/options/personalization.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 086be3199812a027255dbc102b56d7aab586ad50
Author: Luboš Luňák <l.lunak at suse.cz>
Date:   Tue Dec 4 23:32:26 2012 +0100

    workaround for gcc-4.0.1 bug
    
    Apparently it cannot do proper name resulution here despite the using namespace
    near the top of the file.

diff --git a/cui/source/options/personalization.cxx b/cui/source/options/personalization.cxx
index 4fe2b1b..c0d788c 100644
--- a/cui/source/options/personalization.cxx
+++ b/cui/source/options/personalization.cxx
@@ -69,9 +69,9 @@ OUString SelectPersonaDialog::GetPersonaURL() const
 
 IMPL_LINK( SelectPersonaDialog, VisitPersonas, PushButton*, /*pButton*/ )
 {
-    uno::Reference< system::XSystemShellExecute > xSystemShell( system::SystemShellExecute::create( ::comphelper::getProcessComponentContext() ) );
+    uno::Reference< com::sun::star::system::XSystemShellExecute > xSystemShell( com::sun::star::system::SystemShellExecute::create( ::comphelper::getProcessComponentContext() ) );
 
-    xSystemShell->execute( "http://www.getpersonas.com", OUString(), system::SystemShellExecuteFlags::URIS_ONLY );
+    xSystemShell->execute( "http://www.getpersonas.com", OUString(), com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY );
 
     return 0;
 }


More information about the Libreoffice-commits mailing list