diff options
author | Michele Calgaro <[email protected]> | 2024-02-13 11:03:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-13 11:03:25 +0900 |
commit | 39ecff8fe9f78f3363caa0dd1bca64d68dd178b0 (patch) | |
tree | 8b19225a3fc036d91571a5540dd9b42017ef54d2 /kexi/3rdparty/kolibs | |
parent | 359ccbfc2d68e78aa05da43e2b51f358f1d940b1 (diff) | |
download | koffice-39ecff8fe9f78f3363caa0dd1bca64d68dd178b0.tar.gz koffice-39ecff8fe9f78f3363caa0dd1bca64d68dd178b0.zip |
Replace Q_WS_* defines with TQ_WS_* equivalents
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kexi/3rdparty/kolibs')
-rw-r--r-- | kexi/3rdparty/kolibs/koGlobal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/3rdparty/kolibs/koGlobal.cpp b/kexi/3rdparty/kolibs/koGlobal.cpp index a375327f..03c1b3e1 100644 --- a/kexi/3rdparty/kolibs/koGlobal.cpp +++ b/kexi/3rdparty/kolibs/koGlobal.cpp @@ -61,7 +61,7 @@ KoGlobal::KoGlobal() // Another way to get the DPI of the display would be TQPaintDeviceMetrics, // but we have no widget here (and moving this to KoView wouldn't allow // using this from the document easily). -#ifdef Q_WS_X11 +#ifdef TQ_WS_X11 m_dpiX = TQPaintDevice::x11AppDpiX(); m_dpiY = TQPaintDevice::x11AppDpiY(); #else |