diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 18:26:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:44:59 +0900 |
commit | 52bf4ce9dd80ed5179fe6be622626c3376c0da99 (patch) | |
tree | 15d3c15b63288acf6505ced3d265f55cef05cf98 /kfax/kfax.cpp | |
parent | 169841a34676151ac67711c7d05c6343fdf50697 (diff) | |
download | tdegraphics-52bf4ce9dd80ed5179fe6be622626c3376c0da99.tar.gz tdegraphics-52bf4ce9dd80ed5179fe6be622626c3376c0da99.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kfax/kfax.cpp')
-rw-r--r-- | kfax/kfax.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kfax/kfax.cpp b/kfax/kfax.cpp index 77f64539..4cfca778 100644 --- a/kfax/kfax.cpp +++ b/kfax/kfax.cpp @@ -295,7 +295,7 @@ void TopLevel::setupStatusBar() void TopLevel::readSettings() { - config = kapp->config(); + config = tdeApp->config(); applyMainWindowSettings( config, "MainWindowSettings" ); @@ -358,7 +358,7 @@ bool TopLevel::queryClose() void TopLevel::writeSettings() { - config = kapp->config(); + config = tdeApp->config(); config->setGroup("General Options"); @@ -723,7 +723,7 @@ void TopLevel::printIt( KPrinter &printer, TQPainter &painter ) TQPaintDeviceMetrics dm(painter.device()); TQApplication::setOverrideCursor( waitCursor ); - kapp->processEvents(); + tdeApp->processEvents(); const bool fullpage = printer.option(APP_KFAX_SCALE_FULLPAGE) == "true"; const bool center_h = printer.option(APP_KFAX_CENTER_HORZ) == "true"; |