diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:35:14 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:35:14 -0600 |
commit | 3ee504ecba6caf3c2609a8648fe3659f2b541544 (patch) | |
tree | 44f9bf073d7b46a12dfbab0486e6976d960a1aac /amor/amor.cpp | |
parent | 4d75f93557ba631d97a56e288a34ca27f4507653 (diff) | |
download | tdetoys-3ee504ecba6caf3c2609a8648fe3659f2b541544.tar.gz tdetoys-3ee504ecba6caf3c2609a8648fe3659f2b541544.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'amor/amor.cpp')
-rw-r--r-- | amor/amor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/amor/amor.cpp b/amor/amor.cpp index 0a9b436..a9a73e3 100644 --- a/amor/amor.cpp +++ b/amor/amor.cpp @@ -152,7 +152,7 @@ Amor::Amor() : DCOPObject( "AmorIface" ), TQObject() TQT_SLOT(slotMouseClicked(const TQPoint &))); connect(mAmor, TQT_SIGNAL(dragged(const TQPoint &, bool)), TQT_SLOT(slotWidgetDragged(const TQPoint &, bool))); - mAmor->resize(mTheme.tqmaximumSize()); + mAmor->resize(mTheme.maximumSize()); mTimer = new TQTimer(this); connect(mTimer, TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout())); @@ -288,7 +288,7 @@ void Amor::reset() mPosition = mCurrAnim->hotspot().x(); mState = Normal; - mAmor->resize(mTheme.tqmaximumSize()); + mAmor->resize(mTheme.maximumSize()); mCurrAnim->reset(); mTimer->start(0, true); |