diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-07 21:20:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-07 21:20:21 -0600 |
commit | 143fbfa76907357bb86e0daa9fc47065ca8cf65d (patch) | |
tree | c1b9c83f36c87ad1e2e8b739901b1637786774d1 /lib/util/kdevshellwidget.cpp | |
parent | e80643754b9c67298520be1ac90676e938d58d64 (diff) | |
download | tdevelop-143fbfa76907357bb86e0daa9fc47065ca8cf65d.tar.gz tdevelop-143fbfa76907357bb86e0daa9fc47065ca8cf65d.zip |
Rename additional members for tqt3
Diffstat (limited to 'lib/util/kdevshellwidget.cpp')
-rw-r--r-- | lib/util/kdevshellwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/kdevshellwidget.cpp b/lib/util/kdevshellwidget.cpp index 8d217274..5eb7c871 100644 --- a/lib/util/kdevshellwidget.cpp +++ b/lib/util/kdevshellwidget.cpp @@ -57,7 +57,7 @@ void KDevShellWidget::activate( ) m_konsolePart->widget()->show(); - TerminalInterface* ti = static_cast<TerminalInterface*>( m_konsolePart->qt_cast( "TerminalInterface" ) ); + TerminalInterface* ti = static_cast<TerminalInterface*>( m_konsolePart->tqt_cast( "TerminalInterface" ) ); if( !ti ) return; if ( !m_shellName.isEmpty() ) @@ -92,7 +92,7 @@ void KDevShellWidget::processExited( KProcess * proc ) void KDevShellWidget::sendInput( const TQString & text ) { if ( !m_konsolePart ) return; - TerminalInterface* ti = static_cast<TerminalInterface*>( m_konsolePart->qt_cast( "TerminalInterface" ) ); + TerminalInterface* ti = static_cast<TerminalInterface*>( m_konsolePart->tqt_cast( "TerminalInterface" ) ); if( !ti ) return; ti->sendInput( text ); |