Changeset 807


Ignore:
Timestamp:
Oct 27, 2010, 1:18:56 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:
 
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/README.OS2

    r803 r807  
    8989
    9090    Note that you will also need libc064x.dll for this PostgresSQL build and a
    91     patched PostgresSQL DLL that fixes one critical bug (this will not be
     91    patched PostgresSQL library that fixes one critical bug (this will not be
    9292    necessary for the next PostgresSQL build as it will incorporate the fix):
    9393
    9494      http://download.smedley.info/libc064x.zip
    95       http://smedley.info/libpq.zip
     95      http://download.smedley.info/libpq.zip
    9696
    9797    Note that you will also need the above OpenSSL libraries and pthread.lib to
     
    197197      set MYSQL_LIBS=-L<path_to_MySQL>\lib -lmysqlclient_r -L<path_to_OpenSSL>\lib -llibssl -llibcrypto -L<path_to_pthread> -lpthread
    198198
    199     Also add MySQL DLLs to BEGINLIBPATH if they are not already there as shown
    200     above.
    201 
    202199  - Unzip the PostgresSQL archive to some directory and set the following
    203200    environment variables to tell the Qt configure script the library location:
     
    205202      set PSQL_INCLUDEPATH=<path_to_PostgresSQL>\include'
    206203      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 as
    209     shown above.
    210204
    211205
     
    436430                              - BLIT (slower than both FB and FBSWM but prevents
    437431                                screen corruption under the mouse pointer and
    438                                 does not produce a mouse pointer flicker
     432                                does not produce the mouse pointer flicker
    439433                                effect).
    440434
  • TabularUnified trunk/src/gui/kernel/qwidget_pm.cpp

    r775 r807  
    18241824        ULONG fl = SWP_HIDE;
    18251825        if (q->isWindow() && frameWinId() != NULLHANDLE) {
    1826             if (!(q->windowFlags() & Qt::Popup))
     1826            if ((q->windowFlags() & Qt::Popup) != Qt::Popup)
    18271827                fl |= SWP_DEACTIVATE;
    18281828        }
  • TabularUnified trunk/src/gui/kernel/qwidget_win.cpp

    r769 r807  
    10591059#endif
    10601060    if (q->windowFlags() != Qt::Desktop) {
    1061         if ((q->windowFlags() & Qt::Popup) && q->internalWinId())
     1061        if ((q->windowFlags() & Qt::Popup) == Qt::Popup && q->internalWinId())
    10621062            ShowWindow(q->internalWinId(), SW_HIDE);
    10631063        else if (q->internalWinId())
Note: See TracChangeset for help on using the changeset viewer.