[vlc-commits] Qt: try to fix the crash on start
Jean-Baptiste Kempf
git at videolan.org
Thu Apr 9 20:12:08 CEST 2015
vlc/vlc-2.2 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Apr 9 12:27:11 2015 +0200| [cd16d0a10ea94a013b69ede977868e24c418860b] | committer: Jean-Baptiste Kempf
Qt: try to fix the crash on start
The changes on preferences association registration, seems to have
attacked the taskbar part
(cherry picked from commit 0dce302d4cb74f4f9a2ddebb4a5db315895d58ea)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=cd16d0a10ea94a013b69ede977868e24c418860b
---
modules/gui/qt4/main_interface_win32.cpp | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/main_interface_win32.cpp b/modules/gui/qt4/main_interface_win32.cpp
index c16293a..602fbb2 100644
--- a/modules/gui/qt4/main_interface_win32.cpp
+++ b/modules/gui/qt4/main_interface_win32.cpp
@@ -115,9 +115,11 @@ void MainInterface::createTaskBarButtons()
FIXME:the play button's picture doesn't changed to pause when clicked
*/
- CoInitializeEx( NULL, COINIT_MULTITHREADED );
+ HRESULT hr = CoInitializeEx( NULL, COINIT_MULTITHREADED );
+ if( hr == RPC_E_CHANGED_MODE )
+ hr = CoInitializeEx( NULL, COINIT_APARTMENTTHREADED );
- if( S_OK == CoCreateInstance( CLSID_TaskbarList,
+ if( SUCCEEDED(hr) && S_OK == CoCreateInstance( CLSID_TaskbarList,
NULL, CLSCTX_INPROC_SERVER,
IID_ITaskbarList3,
(void **)&p_taskbl) )
@@ -186,7 +188,6 @@ void MainInterface::createTaskBarButtons()
himl = NULL;
p_taskbl = NULL;
}
-
}
bool MainInterface::winEvent ( MSG * msg, long * result )
More information about the vlc-commits
mailing list