~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to solid/solid/backends/wmi/wmibattery.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
Battery::Battery(WmiDevice *device)
26
26
    : DeviceInterface(device)
27
27
{
28
 
    connect(device, SIGNAL(propertyChanged(const QMap<QString,int> &)),
29
 
             this, SLOT(slotPropertyChanged(const QMap<QString,int> &)));
 
28
    connect(device, SIGNAL(propertyChanged(QMap<QString,int>)),
 
29
             this, SLOT(slotPropertyChanged(QMap<QString,int>)));
30
30
}
31
31
 
32
32
Battery::~Battery()