summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmviewlayoutmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmviewlayoutmanager.cpp')
-rw-r--r--kpovmodeler/pmviewlayoutmanager.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpovmodeler/pmviewlayoutmanager.cpp b/kpovmodeler/pmviewlayoutmanager.cpp
index a3eb400b..a61646db 100644
--- a/kpovmodeler/pmviewlayoutmanager.cpp
+++ b/kpovmodeler/pmviewlayoutmanager.cpp
@@ -520,7 +520,7 @@ void PMViewLayout::recursiveExtractColumns(
if( w->inherits( "PMDockSplitter" ) )
{
PMDockSplitter* sp = ( PMDockSplitter* ) w;
- if( sp->splitterOrientation( ) == Qt::Vertical )
+ if( sp->splitterOrientation( ) == TQt::Vertical )
{
colStart = false;
// vertical splitter, split up the current column
@@ -884,13 +884,13 @@ PMSaveViewLayoutDialog::PMSaveViewLayoutDialog( PMShell* parent,
m_pLayoutName = new TQLineEdit( w );
vl->addWidget( m_pLayoutName );
- connect( m_pLayoutName, TQT_SIGNAL( textChanged( const TQString& ) ),
- TQT_SLOT( slotNameChanged( const TQString& ) ) );
+ connect( m_pLayoutName, TQ_SIGNAL( textChanged( const TQString& ) ),
+ TQ_SLOT( slotNameChanged( const TQString& ) ) );
TQListBox* lb = new TQListBox( w );
vl->addWidget( lb );
- connect( lb, TQT_SIGNAL( highlighted( const TQString& ) ),
- TQT_SLOT( slotNameSelected( const TQString& ) ) );
+ connect( lb, TQ_SIGNAL( highlighted( const TQString& ) ),
+ TQ_SLOT( slotNameSelected( const TQString& ) ) );
lb->insertStringList( PMViewLayoutManager::theManager( )
->availableLayouts( ) );