diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:29:36 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:29:36 -0600 |
commit | 59d9dbf810de71334e1173fa7dda59209c10032c (patch) | |
tree | 9091f90565a6b444b49d6624fb9a833930b818fc /src/urlnavigator.cpp | |
parent | 6f9ad886fd16b883bed1f6fa731bd709de0afb9c (diff) | |
download | dolphin-59d9dbf810de71334e1173fa7dda59209c10032c.tar.gz dolphin-59d9dbf810de71334e1173fa7dda59209c10032c.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/urlnavigator.cpp')
-rw-r--r-- | src/urlnavigator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index 58de6b0..ce718d8 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -428,7 +428,7 @@ void URLNavigator::updateContent() // TODO: don't hardcode the shortcut as part of the text TQToolTip::add(m_toggleButton, i18n("Browse (Ctrl+B, Escape)")); - tqsetSizePolicy(TQSizePolicy::Minimum, TQSizePolicy::Fixed); + setSizePolicy(TQSizePolicy::Minimum, TQSizePolicy::Fixed); m_pathBox->show(); m_pathBox->setURL(url()); } @@ -436,7 +436,7 @@ void URLNavigator::updateContent() // TODO: don't hardcode the shortcut as part of the text TQToolTip::add(m_toggleButton, i18n("Edit location (Ctrl+L)")); - tqsetSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); + setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); m_pathBox->hide(); TQString dir_name; |