Update various qt function definitions and static methods for tqt3

feat/lzip-support
Timothy Pearson 12 years ago
parent b1fd29ae41
commit 357e5cce6c

@ -1104,7 +1104,7 @@ EOF
if test $kde_qtsubver -gt 0; then if test $kde_qtsubver -gt 0; then
cat >> conftest.$ac_ext <<EOF cat >> conftest.$ac_ext <<EOF
#if QT_VERSION < 210 #if TQT_VERSION < 210
#error 1 #error 1
#endif #endif
EOF EOF
@ -1201,22 +1201,22 @@ fi
if test -z "$3"; then if test -z "$3"; then
if test $kde_qtver = 3; then if test $kde_qtver = 3; then
if test $kde_qtsubver -gt 0; then if test $kde_qtsubver -gt 0; then
kde_qt_verstring="QT_VERSION >= 0x03@VER@00 && QT_VERSION < 0x040000" kde_qt_verstring="TQT_VERSION >= 0x03@VER@00 && TQT_VERSION < 0x040000"
qtsubver=`echo "00$kde_qtsubver" | sed -e 's,.*\(..\)$,\1,'` qtsubver=`echo "00$kde_qtsubver" | sed -e 's,.*\(..\)$,\1,'`
kde_qt_verstring=`echo $kde_qt_verstring | sed -e "s,@VER@,$qtsubver,"` kde_qt_verstring=`echo $kde_qt_verstring | sed -e "s,@VER@,$qtsubver,"`
else else
kde_qt_verstring="QT_VERSION >= 300 && QT_VERSION < 0x040000" kde_qt_verstring="TQT_VERSION >= 300 && TQT_VERSION < 0x040000"
fi fi
fi fi
if test $kde_qtver = 2; then if test $kde_qtver = 2; then
if test $kde_qtsubver -gt 0; then if test $kde_qtsubver -gt 0; then
kde_qt_verstring="QT_VERSION >= 222" kde_qt_verstring="TQT_VERSION >= 222"
else else
kde_qt_verstring="QT_VERSION >= 200" kde_qt_verstring="TQT_VERSION >= 200"
fi fi
fi fi
if test $kde_qtver = 1; then if test $kde_qtver = 1; then
kde_qt_verstring="QT_VERSION >= 142 && QT_VERSION < 200" kde_qt_verstring="TQT_VERSION >= 142 && TQT_VERSION < 200"
fi fi
else else
kde_qt_verstring="$3" kde_qt_verstring="$3"

@ -37,7 +37,7 @@ DirHistoryButton::DirHistoryButton( DirHistoryQueue* hQ, TQWidget *parent, const
setAcceptDrops( false ); setAcceptDrops( false );
popupMenu = new TQPopupMenu( this ); popupMenu = new TQPopupMenu( this );
Q_CHECK_PTR( popupMenu ); TQ_CHECK_PTR( popupMenu );
setPopup( popupMenu ); setPopup( popupMenu );
popupMenu->setCheckable( true ); popupMenu->setCheckable( true );

@ -45,13 +45,13 @@ KCMDModeButton::KCMDModeButton( TQWidget *parent, const char *name ) : TQToolBut
setIconSet( SmallIcon( "konsole" ) ); setIconSet( SmallIcon( "konsole" ) );
adjustSize(); adjustSize();
action = new KActionMenu( i18n("Execution mode") ); action = new KActionMenu( i18n("Execution mode") );
Q_CHECK_PTR( action ); TQ_CHECK_PTR( action );
for( int i=0; Krusader::execTypeArray[i] != 0; i++ ) for( int i=0; Krusader::execTypeArray[i] != 0; i++ )
{ {
action->insert( *Krusader::execTypeArray[i] ); action->insert( *Krusader::execTypeArray[i] );
} }
TQPopupMenu *pP = action->popupMenu(); TQPopupMenu *pP = action->popupMenu();
Q_CHECK_PTR( pP ); TQ_CHECK_PTR( pP );
setPopup( pP ); setPopup( pP );
setPopupDelay( 10 ); setPopupDelay( 10 );
setAcceptDrops( false ); setAcceptDrops( false );

@ -84,7 +84,7 @@ MediaButton::MediaButton( TQWidget *parent, const char *name ) : TQToolButton( p
popupMenu = new TQPopupMenu( this ); popupMenu = new TQPopupMenu( this );
popupMenu->installEventFilter( this ); popupMenu->installEventFilter( this );
Q_CHECK_PTR( popupMenu ); TQ_CHECK_PTR( popupMenu );
setPopup( popupMenu ); setPopup( popupMenu );

@ -45,7 +45,7 @@
KDiskFreeSp::KDiskFreeSp(TQObject *parent, const char *name) KDiskFreeSp::KDiskFreeSp(TQObject *parent, const char *name)
: TQObject(parent,name) : TQObject(parent,name)
{ {
dfProc = new KProcess(); Q_CHECK_PTR(dfProc); dfProc = new KProcess(); TQ_CHECK_PTR(dfProc);
dfProc->setEnvironment("LANGUAGE", "C"); dfProc->setEnvironment("LANGUAGE", "C");
connect( dfProc, TQT_SIGNAL(receivedStdout(KProcess *, char *, int) ), connect( dfProc, TQT_SIGNAL(receivedStdout(KProcess *, char *, int) ),
this, TQT_SLOT (receivedDFStdErrOut(KProcess *, char *, int)) ); this, TQT_SLOT (receivedDFStdErrOut(KProcess *, char *, int)) );

Loading…
Cancel
Save