Remove the tq in front of these incorrectly TQt4-converted methods/data members:

tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/filelight@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 7e3e5f90e4
commit 1f0e7cefe5

@ -111,7 +111,7 @@ MainWindow::setupActions() //singleton function
bool
MainWindow::queryExit()
{
if( !m_part ) //aptqparently std::exit() still calls this function, and abort() causes a crash..
if( !m_part ) //apparently std::exit() still calls this function, and abort() causes a crash..
return true;
KConfig* const config = KGlobal::config();

@ -566,7 +566,7 @@
<slot>toggleDontScanRemoteMounts(bool)</slot>
<slot>toggleScanAcrossMounts(bool)</slot>
</Q_SLOTS>
<tqlayoutdefaults spacing="6" margin="11"/>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tqvbuttongroup.h</includehint>
<includehint>knuminput.h</includehint>

@ -38,7 +38,7 @@ BrowserExtension::BrowserExtension( Part *tqparent, const char *name )
{}
Part::Part( TQWidget *tqparentWidget, const char *widgetName, TQObject *tqparent, const char *name, const TQStringList& )
Part::Part( TQWidget *parentWidget, const char *widgetName, TQObject *tqparent, const char *name, const TQStringList& )
: ReadOnlyPart( tqparent, name )
, m_ext( new BrowserExtension( this ) )
, m_statusbar( new StatusBarExtension( this ) )
@ -51,7 +51,7 @@ Part::Part( TQWidget *tqparentWidget, const char *widgetName, TQObject *tqparent
Config::read();
setInstance( Factory::instance() );
setWidget( new TQVBox( tqparentWidget, widgetName ) );
setWidget( new TQVBox( parentWidget, widgetName ) );
setXMLFile( "filelight_partui.rc" );
m_map = new RadialMap::Widget( widget() );

@ -51,7 +51,7 @@ SegmentTip::moveTo( TQPoint p, const TQWidget &canvas, bool placeAbove )
p.rx() -= rect().center().x();
p.ry() -= (placeAbove ? 8 + height() : m_cursorHeight - 8);
const TQRect screen = KGlobalSettings::desktopGeometry( tqparentWidget() );
const TQRect screen = KGlobalSettings::desktopGeometry( parentWidget() );
const int x = p.x();
const int y = p.y();

@ -70,7 +70,7 @@ RadialMap::Widget::tqinvalidate( const bool b )
update();
//tell rest of Filelight
emit tqinvalidated( url() );
emit invalidated( url() );
}
}

@ -81,7 +81,7 @@ namespace RadialMap
signals:
void activated( const KURL& );
void tqinvalidated( const KURL& );
void invalidated( const KURL& );
void created( const Directory* );
void mouseHover( const TQString& );
void giveMeTreeFor( const KURL& );

Loading…
Cancel
Save