summaryrefslogtreecommitdiffstats
path: root/amarok/src/lastfm.cpp
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
commiteb88625a55dbaa7e92042d96241e9ddda4604862 (patch)
tree4c27a5cdb55479be9713df0175bf0fef29c2cbf2 /amarok/src/lastfm.cpp
parent1dbf3ff1cbb6d82a451bc319301bf38816c2c232 (diff)
downloadamarok-eb88625a55dbaa7e92042d96241e9ddda4604862.tar.gz
amarok-eb88625a55dbaa7e92042d96241e9ddda4604862.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amarok/src/lastfm.cpp')
-rw-r--r--amarok/src/lastfm.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/amarok/src/lastfm.cpp b/amarok/src/lastfm.cpp
index 27d46f6d..9fb03845 100644
--- a/amarok/src/lastfm.cpp
+++ b/amarok/src/lastfm.cpp
@@ -51,8 +51,8 @@ using namespace LastFm;
// DO NOT use this class for anything else, use KIO directly instead.
////////////////////////////////////////////////////////////////////////////////
AmarokHttp::AmarokHttp ( const TQString& hostname, TQ_UINT16 port,
- TQObject* tqparent )
- : TQObject( tqparent ),
+ TQObject* parent )
+ : TQObject( parent ),
m_hostname( hostname ),
m_port( port )
{}
@@ -382,8 +382,8 @@ Controller::stationDescription( TQString url )
// CLASS WebService
////////////////////////////////////////////////////////////////////////////////
-WebService::WebService( TQObject* tqparent, bool useProxy )
- : TQObject( tqparent, "lastfmParent" )
+WebService::WebService( TQObject* parent, bool useProxy )
+ : TQObject( parent, "lastfmParent" )
, m_useProxy( useProxy )
, m_deletionUnsafe( false )
, m_wasCanceled( false )
@@ -1093,8 +1093,8 @@ void Bundle::detach() {
////////////////////////////////////////////////////////////////////////////////
// CLASS LastFm::LoginDialog
////////////////////////////////////////////////////////////////////////////////
-LoginDialog::LoginDialog( TQWidget *tqparent )
- : KDialogBase( tqparent, "LastfmLogin", true, TQString(), Ok|Cancel)
+LoginDialog::LoginDialog( TQWidget *parent )
+ : KDialogBase( parent, "LastfmLogin", true, TQString(), Ok|Cancel)
{
makeGridMainWidget( 1, Qt::Horizontal );
new TQLabel( i18n( "To use last.fm with Amarok, you need a last.fm profile." ), mainWidget() );
@@ -1125,8 +1125,8 @@ void LoginDialog::slotOk()
////////////////////////////////////////////////////////////////////////////////
// CLASS LastFm::CustomStationDialog
////////////////////////////////////////////////////////////////////////////////
-CustomStationDialog::CustomStationDialog( TQWidget *tqparent )
- : KDialogBase( tqparent, "LastfmCustomStation", true, i18n( "Create Custom Station" ) , Ok|Cancel)
+CustomStationDialog::CustomStationDialog( TQWidget *parent )
+ : KDialogBase( parent, "LastfmCustomStation", true, i18n( "Create Custom Station" ) , Ok|Cancel)
{
makeVBoxMainWidget();