~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to kscd/dbus/PlayerDBusHandler.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        kDebug() << "**** Launching Player Handler ****";
63
63
        new PlayerAdaptor( this );
64
64
 
65
 
                QDBusConnection::sessionBus().registerObject("/Player", this);
 
65
                QDBusConnection::sessionBus().registerObject( QLatin1String( "/Player" ), this);
66
66
                
67
67
        s_instance = this;
68
 
        setObjectName("PlayerDBusHandler");
 
68
        setObjectName( QLatin1String("PlayerDBusHandler" ));
69
69
 
70
 
        //QDBusConnection::sessionBus().registerObject("/Player", this);
 
70
        //QDBusConnection::sessionBus().registerObject( QLatin1String( "/Player" ), this);
71
71
 
72
72
        connect( this, SIGNAL( StatusChange( DBusStatus ) ), this, SLOT( slotCapsChange() ) );
73
73
    }