diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | cee3e820d889e03e7f9704af40436eef3dab6c71 (patch) | |
tree | cf514a4de329cbc8521e2b617d4ac4f45b710672 /konq-plugins/fsview | |
parent | 89761f7206a1d363dad8e5759184b0af8077ead5 (diff) | |
download | tdeaddons-cee3e820d889e03e7f9704af40436eef3dab6c71.tar.gz tdeaddons-cee3e820d889e03e7f9704af40436eef3dab6c71.zip |
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/kdeaddons@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/fsview')
-rw-r--r-- | konq-plugins/fsview/fsview_part.cpp | 4 | ||||
-rw-r--r-- | konq-plugins/fsview/fsview_part.h | 2 | ||||
-rw-r--r-- | konq-plugins/fsview/treemap.cpp | 6 | ||||
-rw-r--r-- | konq-plugins/fsview/treemap.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/konq-plugins/fsview/fsview_part.cpp b/konq-plugins/fsview/fsview_part.cpp index b9d2f5b..0fdfee7 100644 --- a/konq-plugins/fsview/fsview_part.cpp +++ b/konq-plugins/fsview/fsview_part.cpp @@ -93,7 +93,7 @@ KAboutData* FSViewPart::createAboutData() return aboutData; } -FSViewPart::FSViewPart(TQWidget *tqparentWidget, const char *widgetName, +FSViewPart::FSViewPart(TQWidget *parentWidget, const char *widgetName, TQObject *tqparent, const char *name, const TQStringList& /* args */) : KParts::ReadOnlyPart(tqparent, name) @@ -101,7 +101,7 @@ FSViewPart::FSViewPart(TQWidget *tqparentWidget, const char *widgetName, // we need an instance setInstance( FSViewPartFactory::instance() ); - _view = new FSView(new Inode(), tqparentWidget, widgetName); + _view = new FSView(new Inode(), parentWidget, widgetName); TQWhatsThis::add(_view, i18n("<p>This is the FSView plugin, a graphical " "browsing mode showing filesystem utilization " "by using a tree map visualization.</p>" diff --git a/konq-plugins/fsview/fsview_part.h b/konq-plugins/fsview/fsview_part.h index 1adba9e..2328e21 100644 --- a/konq-plugins/fsview/fsview_part.h +++ b/konq-plugins/fsview/fsview_part.h @@ -86,7 +86,7 @@ class FSViewPart : public KParts::ReadOnlyPart TQ_OBJECT TQ_PROPERTY( bool supportsUndo READ supportsUndo ) public: - FSViewPart(TQWidget *tqparentWidget, const char *widgetName, + FSViewPart(TQWidget *parentWidget, const char *widgetName, TQObject *tqparent, const char *name, const TQStringList &args); virtual ~FSViewPart(); diff --git a/konq-plugins/fsview/treemap.cpp b/konq-plugins/fsview/treemap.cpp index b3f6cb6..285230d 100644 --- a/konq-plugins/fsview/treemap.cpp +++ b/konq-plugins/fsview/treemap.cpp @@ -852,7 +852,7 @@ void TreeMapItem::clear() } -// tqinvalidates current tqchildren and forces redraw +// invalidates current tqchildren and forces redraw // this is only usefull when tqchildren are created on demand in items() void TreeMapItem::refresh() { @@ -1083,10 +1083,10 @@ protected: void TreeMapTip::maybeTip( const TQPoint& pos ) { - if ( !tqparentWidget()->inherits( "TreeMapWidget" ) ) + if ( !parentWidget()->inherits( "TreeMapWidget" ) ) return; - TreeMapWidget* p = (TreeMapWidget*)tqparentWidget(); + TreeMapWidget* p = (TreeMapWidget*)parentWidget(); TreeMapItem* i; i = p->item(pos.x(), pos.y()); TQPtrList<TQRect>* rList = i ? i->freeRects() : 0; diff --git a/konq-plugins/fsview/treemap.h b/konq-plugins/fsview/treemap.h index ca10251..47665ea 100644 --- a/konq-plugins/fsview/treemap.h +++ b/konq-plugins/fsview/treemap.h @@ -436,7 +436,7 @@ public: /** * Selects or unselects an item. * In multiselection mode, the constrain that a selected item - * has no selected tqchildren or tqparents stays true. + * has no selected tqchildren or parents stays true. */ void setSelected(TreeMapItem*, bool selected = true); @@ -517,7 +517,7 @@ public: void setVisibleWidth(int width, bool reuseSpace = false); /** - * If a tqchildren value() is almost the tqparents sum(), + * If a tqchildren value() is almost the parents sum(), * it can happen that the border to be drawn for visibilty of * nesting relations takes to much space, and the * tqparent/child size relation can not be mapped to a correct |