1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

It is now possible to build QupZilla with Microsoft Visual C++ Compiler

2008
This commit is contained in:
nowrep 2011-10-10 20:54:11 +02:00
parent f649151cca
commit c9113ccd1d
2 changed files with 8 additions and 6 deletions

View File

@ -17,11 +17,10 @@
>> Microsoft Windows << >> Microsoft Windows <<
>> << >> <<
You need Microsoft Visual C++ Compiler 2010 You need Microsoft Visual C++ Compiler 2008
in order to build QupZilla. It is because or higher in order to build QupZilla. If You want
QupZilla is using Windows 7 API and therefore use JumpLists in Windows TaskBar, then You need
corresponding headers are included only on versions Microsoft Visual C++ Compiler 2010 and define W7API (more info at the bottom)
2010 and above.
If you don't meet this, please use precompiled versions, If you don't meet this, please use precompiled versions,
which are also in smart windows installer. which are also in smart windows installer.
@ -54,6 +53,7 @@
Windows specific defines Windows specific defines
W7API Build QupZilla with Windows 7 API support W7API Build QupZilla with Windows 7 API support
Requires Microsoft Visual C++ Compiler 2010
(enabled by default) (enabled by default)
Linux / Unix specific defines: Linux / Unix specific defines:

View File

@ -233,6 +233,7 @@ QColor QtWin::colorizationColor()
} }
#ifdef Q_WS_WIN #ifdef Q_WS_WIN
#ifdef W7API
WindowNotifier *QtWin::windowNotifier() WindowNotifier *QtWin::windowNotifier()
{ {
static WindowNotifier *windowNotifierInstance = 0; static WindowNotifier *windowNotifierInstance = 0;
@ -350,7 +351,8 @@ void QtWin::AddTasksToList(ICustomDestinationList* destinationList) {
object_array->Release(); object_array->Release();
obj_collection->Release(); obj_collection->Release();
} }
#endif #endif //Q_WS_WIN
#endif //W7API
void QtWin::setupJumpList() { void QtWin::setupJumpList() {
#ifdef W7API #ifdef W7API