Changeset 807
- Timestamp:
- Oct 27, 2010, 1:18:56 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/README.OS2 ¶
r803 r807 89 89 90 90 Note that you will also need libc064x.dll for this PostgresSQL build and a 91 patched PostgresSQL DLLthat fixes one critical bug (this will not be91 patched PostgresSQL library that fixes one critical bug (this will not be 92 92 necessary for the next PostgresSQL build as it will incorporate the fix): 93 93 94 94 http://download.smedley.info/libc064x.zip 95 http:// smedley.info/libpq.zip95 http://download.smedley.info/libpq.zip 96 96 97 97 Note that you will also need the above OpenSSL libraries and pthread.lib to … … 197 197 set MYSQL_LIBS=-L<path_to_MySQL>\lib -lmysqlclient_r -L<path_to_OpenSSL>\lib -llibssl -llibcrypto -L<path_to_pthread> -lpthread 198 198 199 Also add MySQL DLLs to BEGINLIBPATH if they are not already there as shown200 above.201 202 199 - Unzip the PostgresSQL archive to some directory and set the following 203 200 environment variables to tell the Qt configure script the library location: … … 205 202 set PSQL_INCLUDEPATH=<path_to_PostgresSQL>\include' 206 203 set PSQL_LIBS=-L<path_to_PostgresSQL>\lib -llibpq -L<path_to_OpenSSL>\lib -llibssl -llibcrypto -L<path_to_pthread> -lpthread 207 208 Also add PostgresSQL DLLs to BEGINLIBPATH if they are not already there as209 shown above.210 204 211 205 … … 436 430 - BLIT (slower than both FB and FBSWM but prevents 437 431 screen corruption under the mouse pointer and 438 does not produce amouse pointer flicker432 does not produce the mouse pointer flicker 439 433 effect). 440 434 -
TabularUnified trunk/src/gui/kernel/qwidget_pm.cpp ¶
r775 r807 1824 1824 ULONG fl = SWP_HIDE; 1825 1825 if (q->isWindow() && frameWinId() != NULLHANDLE) { 1826 if ( !(q->windowFlags() & Qt::Popup))1826 if ((q->windowFlags() & Qt::Popup) != Qt::Popup) 1827 1827 fl |= SWP_DEACTIVATE; 1828 1828 } -
TabularUnified trunk/src/gui/kernel/qwidget_win.cpp ¶
r769 r807 1059 1059 #endif 1060 1060 if (q->windowFlags() != Qt::Desktop) { 1061 if ((q->windowFlags() & Qt::Popup) && q->internalWinId())1061 if ((q->windowFlags() & Qt::Popup) == Qt::Popup && q->internalWinId()) 1062 1062 ShowWindow(q->internalWinId(), SW_HIDE); 1063 1063 else if (q->internalWinId())
Note:
See TracChangeset
for help on using the changeset viewer.