summaryrefslogtreecommitdiffstats
path: root/src/app/Dialogs
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-10 10:29:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-10 10:29:45 +0900
commitebee8a024a015b117e10d5c830fd0c05a0c98b60 (patch)
treebe5cccf0e165642617a3e0375b958461fcfede8d /src/app/Dialogs
parent5e3b4d55cedec238ae04c3023fb0edf9682404f3 (diff)
downloadkrusader-ebee8a024a015b117e10d5c830fd0c05a0c98b60.tar.gz
krusader-ebee8a024a015b117e10d5c830fd0c05a0c98b60.zip
Don't use old TQt compatibility code and remove RELEASE_NAME support
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/app/Dialogs')
-rw-r--r--src/app/Dialogs/krprogress.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/app/Dialogs/krprogress.cpp b/src/app/Dialogs/krprogress.cpp
index 1d489d5..fa97ec4 100644
--- a/src/app/Dialogs/krprogress.cpp
+++ b/src/app/Dialogs/krprogress.cpp
@@ -129,9 +129,7 @@ KrProgress::KrProgress( TDEIO::Job* job )
// change to modal & move to Krusader's center
TQPoint center((krApp->width()-width())/2,(krApp->height()-height())/2);
center = center+(krApp->pos());
- reparent(krApp,WType_Modal,center);
- //setWFlags(WType_Modal);
- //move((krApp->width()-width())/2,(krApp->height()-height())/2);
+ reparent(krApp,WType_Dialog | WShowModal,center);
show();
}