summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/mpegencoder/kimg2mpg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/mpegencoder/kimg2mpg.cpp')
-rw-r--r--kipi-plugins/mpegencoder/kimg2mpg.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kipi-plugins/mpegencoder/kimg2mpg.cpp b/kipi-plugins/mpegencoder/kimg2mpg.cpp
index 03eb1ea..be78b6d 100644
--- a/kipi-plugins/mpegencoder/kimg2mpg.cpp
+++ b/kipi-plugins/mpegencoder/kimg2mpg.cpp
@@ -108,9 +108,9 @@ namespace KIPIMPEGEncoderPlugin
class ImageItem : public TQListBoxText
{
public:
- ImageItem(TQListBox * tqparent, TQString const & name, TQString const & comments, TQString const & path,
+ ImageItem(TQListBox * parent, TQString const & name, TQString const & comments, TQString const & path,
TQString const & album)
- : TQListBoxText(tqparent), _name(name), _comments(comments), _path(path), _album(album)
+ : TQListBoxText(parent), _name(name), _comments(comments), _path(path), _album(album)
{}
TQString comments() { return _comments; }
@@ -129,8 +129,8 @@ private:
/////////////////////////////////////////////////////////////////////////////////////////////
-ListImageItems::ListImageItems(TQWidget *tqparent, const char *name)
- : KListBox(tqparent, name)
+ListImageItems::ListImageItems(TQWidget *parent, const char *name)
+ : KListBox(parent, name)
{
setSelectionMode (TQListBox::Extended);
setAcceptDrops(true);
@@ -179,8 +179,8 @@ void ListImageItems::dropEvent(TQDropEvent *e)
/////////////////////////////// CONSTRUCTOR /////////////////////////////////////////////////
-KImg2mpgData::KImg2mpgData(KIPI::Interface* interface, TQWidget *tqparent, const char *name)
- : KImg2mpgBase(tqparent, name), m_interface( interface )
+KImg2mpgData::KImg2mpgData(KIPI::Interface* interface, TQWidget *parent, const char *name)
+ : KImg2mpgBase(parent, name), m_interface( interface )
{
m_TmpFolderConfig = "";
m_Proc = 0L;