diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-04 23:32:26 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-04 23:33:09 +0100 |
commit | 60b0a466ec6df97df14e7341228b8f8c2c48f8dc (patch) | |
tree | 40cc86a918c1d3fef781fe3bb162e0b32ce817af /cui | |
parent | 1732d9e96fc11417fb966f2127001711fa3af4f1 (diff) |
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.
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/personalization.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/personalization.cxx b/cui/source/options/personalization.cxx index 4fe2b1bc5afa..c0d788cc8040 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; } |