summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/mpegencoder
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitea3848d71d9559414d14d0a8b8bb1ebb684f46c2 (patch)
tree859d20a007be94df4bf0b78cdf3720bfee903892 /kipi-plugins/mpegencoder
parent94ec53c96c3d5dc4a427e7dc4bbaa863add5cfa4 (diff)
downloadkipi-plugins-ea3848d71d9559414d14d0a8b8bb1ebb684f46c2.tar.gz
kipi-plugins-ea3848d71d9559414d14d0a8b8bb1ebb684f46c2.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/libraries/kipi-plugins@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kipi-plugins/mpegencoder')
-rw-r--r--kipi-plugins/mpegencoder/checkbinprog.cpp2
-rw-r--r--kipi-plugins/mpegencoder/checkbinprog.h2
-rwxr-xr-xkipi-plugins/mpegencoder/images2mpg2
-rw-r--r--kipi-plugins/mpegencoder/kimg2mpg.cpp12
-rw-r--r--kipi-plugins/mpegencoder/kimg2mpg.h4
-rw-r--r--kipi-plugins/mpegencoder/kshowdebuggingoutput.cpp4
-rw-r--r--kipi-plugins/mpegencoder/kshowdebuggingoutput.h2
-rw-r--r--kipi-plugins/mpegencoder/optionsdialog.cpp4
-rw-r--r--kipi-plugins/mpegencoder/optionsdialog.h2
-rw-r--r--kipi-plugins/mpegencoder/plugin_mpegencoder.cpp6
-rw-r--r--kipi-plugins/mpegencoder/plugin_mpegencoder.h2
11 files changed, 21 insertions, 21 deletions
diff --git a/kipi-plugins/mpegencoder/checkbinprog.cpp b/kipi-plugins/mpegencoder/checkbinprog.cpp
index 59103a6..8c9d455 100644
--- a/kipi-plugins/mpegencoder/checkbinprog.cpp
+++ b/kipi-plugins/mpegencoder/checkbinprog.cpp
@@ -43,7 +43,7 @@ namespace KIPIMPEGEncoderPlugin
///////////////////////////////// CONSTRUCTOR ///////////////////////////////////////////////
-CheckBinProg::CheckBinProg(TQObject *tqparent)
+CheckBinProg::CheckBinProg(TQObject *parent)
{
config = new KConfig("kipirc");
config->setGroup("MPEGEncoder Settings");
diff --git a/kipi-plugins/mpegencoder/checkbinprog.h b/kipi-plugins/mpegencoder/checkbinprog.h
index 7ce17ef..7ed80c2 100644
--- a/kipi-plugins/mpegencoder/checkbinprog.h
+++ b/kipi-plugins/mpegencoder/checkbinprog.h
@@ -37,7 +37,7 @@ Q_OBJECT
TQ_OBJECT
public:
- CheckBinProg(TQObject *tqparent=0);
+ CheckBinProg(TQObject *parent=0);
virtual ~CheckBinProg();
int findExecutables( void );
diff --git a/kipi-plugins/mpegencoder/images2mpg b/kipi-plugins/mpegencoder/images2mpg
index 665590c..9b15b7b 100755
--- a/kipi-plugins/mpegencoder/images2mpg
+++ b/kipi-plugins/mpegencoder/images2mpg
@@ -116,7 +116,7 @@
# Add a video type command line option (PAL, NTSC, SECAM).
# Remove '-F' option (frame rate value -> fixed by video type option)
# Add an exiting test of input image files before encoding.
-# Add an exiting test of input audio files and tqmask file before encoding.
+# Add an exiting test of input audio files and mask file before encoding.
# Add an exiting test if verbosity level is unknown.
# Add image sequence duration value test.
# Add an implementation for don't used a default 'black.png' file. ImageMagick create a
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;
diff --git a/kipi-plugins/mpegencoder/kimg2mpg.h b/kipi-plugins/mpegencoder/kimg2mpg.h
index 9868381..7e16e9f 100644
--- a/kipi-plugins/mpegencoder/kimg2mpg.h
+++ b/kipi-plugins/mpegencoder/kimg2mpg.h
@@ -80,7 +80,7 @@ Q_OBJECT
TQ_OBJECT
public:
- ListImageItems(TQWidget *tqparent=0, const char *name=0);
+ ListImageItems(TQWidget *parent=0, const char *name=0);
signals:
void addedDropItems(KURL::List filesUrl);
@@ -98,7 +98,7 @@ Q_OBJECT
public:
- KImg2mpgData( KIPI::Interface* interface, TQWidget* tqparent = 0, const char * name = 0 );
+ KImg2mpgData( KIPI::Interface* interface, TQWidget* parent = 0, const char * name = 0 );
virtual ~KImg2mpgData();
void show();
diff --git a/kipi-plugins/mpegencoder/kshowdebuggingoutput.cpp b/kipi-plugins/mpegencoder/kshowdebuggingoutput.cpp
index cd343d0..9343886 100644
--- a/kipi-plugins/mpegencoder/kshowdebuggingoutput.cpp
+++ b/kipi-plugins/mpegencoder/kshowdebuggingoutput.cpp
@@ -29,8 +29,8 @@ namespace KIPIMPEGEncoderPlugin
/////////////////////////////////////////////////////////////////////////////////////////////
-KShowDebuggingOutput::KShowDebuggingOutput(TQString Messages, TQString Header, TQString Foot, TQWidget* tqparent )
- : KDialog( tqparent, "debugViewDialog", true )
+KShowDebuggingOutput::KShowDebuggingOutput(TQString Messages, TQString Header, TQString Foot, TQWidget* parent )
+ : KDialog( parent, "debugViewDialog", true )
{
setCaption( i18n("Debugging Output") );
diff --git a/kipi-plugins/mpegencoder/kshowdebuggingoutput.h b/kipi-plugins/mpegencoder/kshowdebuggingoutput.h
index 60a2433..6a36569 100644
--- a/kipi-plugins/mpegencoder/kshowdebuggingoutput.h
+++ b/kipi-plugins/mpegencoder/kshowdebuggingoutput.h
@@ -44,7 +44,7 @@ Q_OBJECT
TQ_OBJECT
public:
- KShowDebuggingOutput( TQString Messages, TQString Header, TQString Foot, TQWidget* tqparent );
+ KShowDebuggingOutput( TQString Messages, TQString Header, TQString Foot, TQWidget* parent );
~KShowDebuggingOutput();
public slots:
diff --git a/kipi-plugins/mpegencoder/optionsdialog.cpp b/kipi-plugins/mpegencoder/optionsdialog.cpp
index fe7ef1d..d657a86 100644
--- a/kipi-plugins/mpegencoder/optionsdialog.cpp
+++ b/kipi-plugins/mpegencoder/optionsdialog.cpp
@@ -47,8 +47,8 @@ namespace KIPIMPEGEncoderPlugin
////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////
-OptionsDialog::OptionsDialog(TQWidget *tqparent)
- : KDialogBase( tqparent, "MPEGEncoderOptionsDialog", true,
+OptionsDialog::OptionsDialog(TQWidget *parent)
+ : KDialogBase( parent, "MPEGEncoderOptionsDialog", true,
i18n("MPEG Encoder Plugin Settings"), Ok|Cancel, Ok, false)
{
Icons = new KIconLoader( TQString( "MenuDlg" ) );
diff --git a/kipi-plugins/mpegencoder/optionsdialog.h b/kipi-plugins/mpegencoder/optionsdialog.h
index b107576..3148d83 100644
--- a/kipi-plugins/mpegencoder/optionsdialog.h
+++ b/kipi-plugins/mpegencoder/optionsdialog.h
@@ -44,7 +44,7 @@ Q_OBJECT
TQ_OBJECT
public:
- OptionsDialog(TQWidget *tqparent=0);
+ OptionsDialog(TQWidget *parent=0);
~OptionsDialog();
KLineEdit* IMBinFolderEditFilename;
diff --git a/kipi-plugins/mpegencoder/plugin_mpegencoder.cpp b/kipi-plugins/mpegencoder/plugin_mpegencoder.cpp
index f8e438a..cd562b5 100644
--- a/kipi-plugins/mpegencoder/plugin_mpegencoder.cpp
+++ b/kipi-plugins/mpegencoder/plugin_mpegencoder.cpp
@@ -49,8 +49,8 @@ typedef KGenericFactory<Plugin_Mpegencoder> Factory;
K_EXPORT_COMPONENT_FACTORY( kipiplugin_mpegencoder,
Factory("kipiplugin_mpegencoder"))
-Plugin_Mpegencoder::Plugin_Mpegencoder(TQObject *tqparent, const char*, const TQStringList&)
- : KIPI::Plugin( Factory::instance(), tqparent, "MPEGEncoder")
+Plugin_Mpegencoder::Plugin_Mpegencoder(TQObject *parent, const char*, const TQStringList&)
+ : KIPI::Plugin( Factory::instance(), parent, "MPEGEncoder")
{
kdDebug( 51001 ) << "Plugin_Mpegencoder plugin loaded" << endl;
}
@@ -76,7 +76,7 @@ Plugin_Mpegencoder::~Plugin_Mpegencoder()
void Plugin_Mpegencoder::slotActivate()
{
- KIPI::Interface* interface = dynamic_cast< KIPI::Interface* >( tqparent() );
+ KIPI::Interface* interface = dynamic_cast< KIPI::Interface* >( parent() );
if ( !interface )
{
diff --git a/kipi-plugins/mpegencoder/plugin_mpegencoder.h b/kipi-plugins/mpegencoder/plugin_mpegencoder.h
index 0b8a5cf..f040040 100644
--- a/kipi-plugins/mpegencoder/plugin_mpegencoder.h
+++ b/kipi-plugins/mpegencoder/plugin_mpegencoder.h
@@ -35,7 +35,7 @@ Q_OBJECT
public:
- Plugin_Mpegencoder(TQObject *tqparent, const char* name, const TQStringList &args);
+ Plugin_Mpegencoder(TQObject *parent, const char* name, const TQStringList &args);
virtual ~Plugin_Mpegencoder();
virtual KIPI::Category category( KAction* action ) const;
virtual void setup( TQWidget* widget );