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

New commits:
commit 60b0a466ec6df97df14e7341228b8f8c2c48f8dc
Author: Luboš Luňák <l.lu...@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;
 }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to