diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 2583f299a84906ae6df2494a877553cbe3a7f804 (patch) | |
tree | 6b73a6bddd68796fbef5a8ca81ab4d136a5afe82 /plugin | |
parent | 1b9ba97805fd4a187f1b8247c358feb823535b77 (diff) | |
download | smb4k-2583f299a84906ae6df2494a877553cbe3a7f804.tar.gz smb4k-2583f299a84906ae6df2494a877553cbe3a7f804.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/smb4k@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/smb4k_konqplugin.cpp | 8 | ||||
-rw-r--r-- | plugin/smb4k_konqplugin.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/plugin/smb4k_konqplugin.cpp b/plugin/smb4k_konqplugin.cpp index 794482c..1a5a1c4 100644 --- a/plugin/smb4k_konqplugin.cpp +++ b/plugin/smb4k_konqplugin.cpp @@ -53,14 +53,14 @@ #include "../smb4k/core/smb4kcore.h" #include "../smb4k/core/smb4kdefs.h" -smb4kWidget::smb4kWidget( TQWidget * tqparent, const char * name, WFlags f ) - : TQVBox(tqparent, name, f) +smb4kWidget::smb4kWidget( TQWidget * parent, const char * name, WFlags f ) + : TQVBox(parent, name, f) { // Nothing exciting to do ! } -KonqSidebar_Smb4K::KonqSidebar_Smb4K(KInstance *inst,TQObject *tqparent,TQWidget *widgetParent, TQString &desktopName, const char* name): - KonqSidebarPlugin(inst,tqparent,widgetParent,desktopName,name) +KonqSidebar_Smb4K::KonqSidebar_Smb4K(KInstance *inst,TQObject *parent,TQWidget *widgetParent, TQString &desktopName, const char* name): + KonqSidebarPlugin(inst,parent,widgetParent,desktopName,name) { widget = new smb4kWidget( widgetParent ); diff --git a/plugin/smb4k_konqplugin.h b/plugin/smb4k_konqplugin.h index fbefb26..fbc7770 100644 --- a/plugin/smb4k_konqplugin.h +++ b/plugin/smb4k_konqplugin.h @@ -45,7 +45,7 @@ class smb4kWidget : public TQVBox Q_OBJECT TQ_OBJECT public: - smb4kWidget( TQWidget * tqparent = 0, const char * name = 0, WFlags f = 0 ); + smb4kWidget( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 ); private: @@ -60,12 +60,12 @@ public: * Construct a @ref KonqSidebarPlugin. * * @param inst The sidebar's kinstance class. - * @param tqparent The sidebar internal button info class responsible for this plugin. + * @param parent The sidebar internal button info class responsible for this plugin. * @param widgetParent The container which will contain the plugins widget. * @param desktopName The filename of the configuration file. * @param name A TQt object name for your plugin. **/ - KonqSidebar_Smb4K(KInstance *inst,TQObject *tqparent,TQWidget *widgetParent, TQString &desktopName, const char* name=0); + KonqSidebar_Smb4K(KInstance *inst,TQObject *parent,TQWidget *widgetParent, TQString &desktopName, const char* name=0); /** destructor */ ~KonqSidebar_Smb4K(); |