diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:12:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:12:30 -0600 |
commit | 11191ef0b9908604d1d7aaca382b011ef22c454c (patch) | |
tree | d38f0ccd8bfcc9756f5cfc42fb2ad1dad351e6aa /koshell/koshell_shell.cc | |
parent | c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54 (diff) | |
download | koffice-11191ef0b9908604d1d7aaca382b011ef22c454c.tar.gz koffice-11191ef0b9908604d1d7aaca382b011ef22c454c.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'koshell/koshell_shell.cc')
-rw-r--r-- | koshell/koshell_shell.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/koshell/koshell_shell.cc b/koshell/koshell_shell.cc index 9639ae71..cbc314ab 100644 --- a/koshell/koshell_shell.cc +++ b/koshell/koshell_shell.cc @@ -66,7 +66,7 @@ KoShellWindow::KoShellWindow() // Setup the sidebar m_pSidebar = new IconSidePane( m_pLayout ); - m_pSidebar->tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Maximum, + m_pSidebar->setSizePolicy( TQSizePolicy( TQSizePolicy::Maximum, TQSizePolicy::Preferred ) ); m_pSidebar->setActionCollection( actionCollection() ); m_grpFile = m_pSidebar->insertGroup(i18n("Components"), false, TQT_TQOBJECT(this), TQT_SLOT( slotSidebar_Part(int ))); @@ -75,7 +75,7 @@ KoShellWindow::KoShellWindow() // Setup the tabbar m_pFrame = new KTabWidget( m_pLayout ); - m_pFrame->tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, + m_pFrame->setSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Preferred ) ); m_pFrame->setTabPosition( KTabWidget::Bottom ); @@ -175,7 +175,7 @@ bool KoShellWindow::openDocumentInternal( const KURL &url, KoDocument* ) KoFilterManager *manager = new KoFilterManager( url.path() ); TQCString mimetype; // an empty mimetype means, that the "nearest" - KoFilter::ConversiontqStatus status = manager->exp0rt( tmpFile->name(), mimetype ); // KOffice part will be chosen + KoFilter::ConversionStatus status = manager->exp0rt( tmpFile->name(), mimetype ); // KOffice part will be chosen delete manager; if ( status != KoFilter::OK || mimetype.isEmpty() ) { |