diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:15:16 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:15:16 -0600 |
commit | d6609da6b8c963fc19b622ab37f38e65df4e0a29 (patch) | |
tree | 66b2ac7b12897c16ac5226da82c451c04994f9cd /src/svnfrontend/fronthelpers | |
parent | 548395e018d377eaa8fede0fba271da8b6c49fc9 (diff) | |
download | tdesvn-d6609da6b8c963fc19b622ab37f38e65df4e0a29.tar.gz tdesvn-d6609da6b8c963fc19b622ab37f38e65df4e0a29.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/svnfrontend/fronthelpers')
-rw-r--r-- | src/svnfrontend/fronthelpers/checkoutinfo.ui | 2 | ||||
-rw-r--r-- | src/svnfrontend/fronthelpers/cursorstack.h | 2 | ||||
-rw-r--r-- | src/svnfrontend/fronthelpers/rangeinput_impl.cpp | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/svnfrontend/fronthelpers/checkoutinfo.ui b/src/svnfrontend/fronthelpers/checkoutinfo.ui index 048711e..8644974 100644 --- a/src/svnfrontend/fronthelpers/checkoutinfo.ui +++ b/src/svnfrontend/fronthelpers/checkoutinfo.ui @@ -144,7 +144,7 @@ <property name="name"> <cstring>m_DepthSelector</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>20</width> <height>20</height> diff --git a/src/svnfrontend/fronthelpers/cursorstack.h b/src/svnfrontend/fronthelpers/cursorstack.h index 4daf061..cadad9b 100644 --- a/src/svnfrontend/fronthelpers/cursorstack.h +++ b/src/svnfrontend/fronthelpers/cursorstack.h @@ -39,7 +39,7 @@ public: * Create instance and changes the application cursor to \a c * \param c cursortype to set. */ - CursorStack(TQt::tqCursorShape c = TQt::WaitCursor) + CursorStack(TQt::CursorShape c = TQt::WaitCursor) { KApplication::setOverrideCursor(TQCursor(c)); } diff --git a/src/svnfrontend/fronthelpers/rangeinput_impl.cpp b/src/svnfrontend/fronthelpers/rangeinput_impl.cpp index e21eaca..7ad1d37 100644 --- a/src/svnfrontend/fronthelpers/rangeinput_impl.cpp +++ b/src/svnfrontend/fronthelpers/rangeinput_impl.cpp @@ -36,8 +36,8 @@ Rangeinput_impl::Rangeinput_impl(TQWidget *parent, const char *name) m_endRevInput->setRange(0,INT_MAX,1,false); m_startRevInput->setValue(1); m_endRevInput->setValue(1); - m_startDateInput->setDateTime(TQDateTime::tqcurrentDateTime ()); - m_stopDateInput->setDateTime(TQDateTime::tqcurrentDateTime ()); + m_startDateInput->setDateTime(TQDateTime::currentDateTime ()); + m_stopDateInput->setDateTime(TQDateTime::currentDateTime ()); m_stopDateInput->setEnabled(false); m_startDateInput->setEnabled(false); m_stopHeadButton->setChecked(true); @@ -186,8 +186,8 @@ void Rangeinput_impl::setStartOnly(bool theValue) m_startRevBox->setTitle(i18n( "Start with revision" )); } updateGeometry(); - setMinimumSize(tqminimumSizeHint()); - resize( TQSize(397, 272).expandedTo(tqminimumSizeHint()) ); + setMinimumSize(minimumSizeHint()); + resize( TQSize(397, 272).expandedTo(minimumSizeHint()) ); } #include "rangeinput_impl.moc" |