File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/third_party/mimetypes-qt4/io Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,20 +78,20 @@ class QSystemLibrary
7878 return (m_handle != 0 );
7979 }
8080
81- QFunctionPointer resolve (const char *symbol)
81+ void * resolve (const char *symbol)
8282 {
8383 if (!m_didLoad)
8484 load ();
8585 if (!m_handle)
8686 return 0 ;
8787#ifdef Q_OS_WINCE
88- return QFunctionPointer ( GetProcAddress (m_handle, (const wchar_t *)QString::fromLatin1 (symbol).utf16 () ));
88+ return ( void *) GetProcAddress (m_handle, (const wchar_t *)QString::fromLatin1 (symbol).utf16 ());
8989#else
90- return QFunctionPointer ( GetProcAddress (m_handle, symbol) );
90+ return ( void *) GetProcAddress (m_handle, symbol);
9191#endif
9292 }
9393
94- static QFunctionPointer resolve (const QString &libraryName, const char *symbol)
94+ static void * resolve (const QString &libraryName, const char *symbol)
9595 {
9696 return QSystemLibrary (libraryName).resolve (symbol);
9797 }
You can’t perform that action at this time.
0 commit comments