diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:45 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:45 -0600 |
commit | 2b7143e0539396c75306f6e78bf0a5641ed1acfc (patch) | |
tree | db4ea3490b6703f775f11931c6e7c22f943816bd /src/gvcore/deletedialog.cpp | |
parent | ff1cff2a1e9b7860d4d3779cf20bf79afbe52470 (diff) | |
download | gwenview-2b7143e0539396c75306f6e78bf0a5641ed1acfc.tar.gz gwenview-2b7143e0539396c75306f6e78bf0a5641ed1acfc.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/gvcore/deletedialog.cpp')
-rw-r--r-- | src/gvcore/deletedialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gvcore/deletedialog.cpp b/src/gvcore/deletedialog.cpp index 3d6308b..2e3cfbb 100644 --- a/src/gvcore/deletedialog.cpp +++ b/src/gvcore/deletedialog.cpp @@ -26,7 +26,7 @@ #include <tqstringlist.h> #include <tqcheckbox.h> -#include <tqlayout.h> +#include <layout.h> #include <tqlabel.h> #include <tqtimer.h> #include <tqvbox.h> @@ -113,9 +113,9 @@ bool DeleteDialog::shouldDelete() const { } -TQSize DeleteDialog::tqsizeHint() const { +TQSize DeleteDialog::sizeHint() const { m_widget->adjustSize(); - TQSize hint = m_widget->tqminimumSize(); + TQSize hint = m_widget->minimumSize(); hint = calculateSize(hint.width(), hint.height()); // For some reason calculateSize does not return a correct height. As I'm |