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 | f24ac211b8e67f545e757a50da4a00252d092869 (patch) | |
tree | 113a9b3b91d929b658082587b6e10f647570f775 /src/basket_part.cpp | |
parent | 2ebe91d378b798914b9fd5e741f81bac4ab3ef08 (diff) | |
download | basket-f24ac211b8e67f545e757a50da4a00252d092869.tar.gz basket-f24ac211b8e67f545e757a50da4a00252d092869.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/applications/basket@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/basket_part.cpp')
-rw-r--r-- | src/basket_part.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basket_part.cpp b/src/basket_part.cpp index 7c51696..c3f1c8b 100644 --- a/src/basket_part.cpp +++ b/src/basket_part.cpp @@ -35,7 +35,7 @@ typedef KParts::GenericFactory< BasketPart > BasketFactory; K_EXPORT_COMPONENT_FACTORY( libbasketpart, BasketFactory ) -BasketPart::BasketPart( TQWidget *tqparentWidget, const char *, +BasketPart::BasketPart( TQWidget *parentWidget, const char *, TQObject *tqparent, const char *name, const TQStringList & ) : KParts::ReadWritePart(tqparent, name) { @@ -44,7 +44,7 @@ BasketPart::BasketPart( TQWidget *tqparentWidget, const char *, BasketStatusBar* bar = new BasketStatusBar(new KParts::StatusBarExtension(this)); // this should be your custom internal widget - m_view = new BNPView(tqparentWidget, "BNPViewPart", this, actionCollection(), bar); + m_view = new BNPView(parentWidget, "BNPViewPart", this, actionCollection(), bar); connect(m_view, TQT_SIGNAL(setWindowCaption(const TQString &)), this, TQT_SLOT(setCaption(const TQString &))); connect(m_view, TQT_SIGNAL(showPart()), this, TQT_SIGNAL(showPart())); m_view->setFocusPolicy(TQ_ClickFocus); |