aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIngo Bauersachs <ingo@jitsi.org>2016-05-09 20:49:17 +0200
committerIngo Bauersachs <ingo@jitsi.org>2016-05-09 20:49:17 +0200
commit9b3951be359a16cea8256f9f92e61b5e8f381cbd (patch)
tree7226918738a52a075885cc8cc5456f49878d8d3a /src
parent80319e33232cb1c032dbe9c8f64b70f82c10af1f (diff)
downloadjitsi-9b3951be359a16cea8256f9f92e61b5e8f381cbd.zip
jitsi-9b3951be359a16cea8256f9f92e61b5e8f381cbd.tar.gz
jitsi-9b3951be359a16cea8256f9f92e61b5e8f381cbd.tar.bz2
Remove registry entries for Office 2003/2007
Office 2003 is unsupported and if there's anyone out there still using Office 2007, they can use 2.8 or manually copy the dll from 2.8.
Diffstat (limited to 'src')
-rw-r--r--src/native/windows/msofficecomm/OutOfProcessServer.cxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/native/windows/msofficecomm/OutOfProcessServer.cxx b/src/native/windows/msofficecomm/OutOfProcessServer.cxx
index 0be002e..cb24c8a 100644
--- a/src/native/windows/msofficecomm/OutOfProcessServer.cxx
+++ b/src/native/windows/msofficecomm/OutOfProcessServer.cxx
@@ -502,50 +502,11 @@ unsigned __stdcall OutOfProcessServer::run(void *)
DWORD OutOfProcessServer::setIMProvidersCommunicatorUpAndRunning(DWORD dw)
{
DWORD lastError;
-
- if (dw)
- {
- /*
- * Testing on various machines/setups has shown that the following may
- * or may not succeed without affecting the presence integration so just
- * try them and then go on with the rest regardless of their success.
- */
- lastError = ERROR_SUCCESS;
- regCreateKeyAndSetValue(
- _T("Software\\Microsoft\\Office\\11.0\\Common\\PersonaMenu"),
- _T("RTCApplication"),
- 3);
- regCreateKeyAndSetValue(
- _T("Software\\Microsoft\\Office\\12.0\\Common\\PersonaMenu"),
- _T("RTCApplication"),
- 3);
- regCreateKeyAndSetValue(
- _T("Software\\Microsoft\\Office\\11.0\\Common\\PersonaMenu"),
- _T("QueryServiceForStatus"),
- 2);
- regCreateKeyAndSetValue(
- _T("Software\\Microsoft\\Office\\12.0\\Common\\PersonaMenu"),
- _T("QueryServiceForStatus"),
- 2);
- regCreateKeyAndSetValue(
- _T("Software\\Microsoft\\Office\\11.0\\Outlook\\IM"),
- _T("SetOnlineStatusLevel"),
- 3);
- regCreateKeyAndSetValue(
- _T("Software\\Microsoft\\Office\\12.0\\Outlook\\IM"),
- _T("SetOnlineStatusLevel"),
- 3);
- }
- else
- lastError = ERROR_SUCCESS;
- if (ERROR_SUCCESS == lastError)
- {
lastError
= regCreateKeyAndSetValue(
_T("Software\\IM Providers\\Communicator"),
_T("UpAndRunning"),
dw);
- }
return lastError;
}