diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-08 21:45:03 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-08 21:45:03 -0600 |
commit | 5e47b11f231d3b096b52355cc285e124f257986b (patch) | |
tree | 0bc94e3894ccf97b828cde2696dd7dea1cc94378 /src/kernel/qapplication_x11.cpp | |
parent | e278b858739babff5cc19ca81a661e1256d162e7 (diff) | |
download | qt3-5e47b11f231d3b096b52355cc285e124f257986b.tar.gz qt3-5e47b11f231d3b096b52355cc285e124f257986b.zip |
Enable gcc visibility support in Qt3
This partially closes Bug 696
Diffstat (limited to 'src/kernel/qapplication_x11.cpp')
-rw-r--r-- | src/kernel/qapplication_x11.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/qapplication_x11.cpp b/src/kernel/qapplication_x11.cpp index 8eecdb4..4553fdf 100644 --- a/src/kernel/qapplication_x11.cpp +++ b/src/kernel/qapplication_x11.cpp @@ -337,7 +337,7 @@ static long qt_mode_switch_remove_mask = 0; // flags for extensions for special Languages, currently only for RTL languages static bool qt_use_rtl_extensions = FALSE; -bool qt_hebrew_keyboard_hack = FALSE; +Q_EXPORT bool qt_hebrew_keyboard_hack = FALSE; static Window mouseActWindow = 0; // window where mouse is static int mouseButtonPressed = 0; // last mouse button pressed @@ -3851,7 +3851,7 @@ void qt_leave_modal( QWidget *widget ) } -bool qt_try_modal( QWidget *widget, XEvent *event ) +Q_EXPORT bool qt_try_modal( QWidget *widget, XEvent *event ) { if (qt_xdnd_dragging) { // allow mouse events while DnD is active |