summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol
diff options
context:
space:
mode:
authorSiqi LIU <me@siqi.fr>2013-08-01 16:25:33 +0200
committerSiqi LIU <me@siqi.fr>2013-08-01 16:25:49 +0200
commit1cfa65ccaf73993caa2b6fbae1501232f1d96ae8 (patch)
tree3e522e9d304e3f37f00389fefaade85bb4bbbfef /sd/source/ui/remotecontrol
parente32798d63bdf0c9fbcc13df06c4afdfc5b0f4dd5 (diff)
enable WiFi support for sdremote
Change-Id: I753b94413262cea6dd094b16a7ae03e8952f2522
Diffstat (limited to 'sd/source/ui/remotecontrol')
-rw-r--r--sd/source/ui/remotecontrol/Server.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/remotecontrol/Server.cxx b/sd/source/ui/remotecontrol/Server.cxx
index 9266ed3371a8..0c9c51fc2a0b 100644
--- a/sd/source/ui/remotecontrol/Server.cxx
+++ b/sd/source/ui/remotecontrol/Server.cxx
@@ -79,7 +79,7 @@ void RemoteServer::execute()
uno::Reference< uno::XComponentContext > xContext = comphelper::getProcessComponentContext();
if (!xContext.is()/* || !officecfg::Office::Common::Misc::ExperimentalMode::get(xContext)*/)
{
- SAL_INFO("sdremote", "not in experimental mode, disabling TCP server");
+ // SAL_INFO("sdremote", "not in experimental mode, disabling TCP server");
spServer = NULL;
return;
}
@@ -311,10 +311,9 @@ sal_Bool RemoteServer::connectClient( ClientInfo* pClient, OUString aPin )
void SdDLL::RegisterRemotes()
{
- // Disable unless in experimental mode for now
SAL_INFO( "sdremote", "SdDLL::RegisterRemotes called" );
uno::Reference< uno::XComponentContext > xContext = comphelper::getProcessComponentContext();
- if ( xContext.is() /* && !officecfg::Office::Impress::Misc::Start::EnableSdremote::get( xContext ) */)
+ if ( xContext.is() && !officecfg::Office::Impress::Misc::Start::EnableSdremote::get( xContext ) )
return;
sd::RemoteServer::setup();