~ubuntu-branches/ubuntu/wily/kscreen/wily

« back to all changes in this revision

Viewing changes to kded/generator.cpp

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2015-01-27 14:53:31 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20150127145331-m7xmdang3oci7jkj
Tags: 4:5.2.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
}
44
44
 
45
45
Generator::Generator()
46
 
 : QObject()
47
 
 , m_forceLaptop(false)
48
 
 , m_forceLidClosed(false)
49
 
 , m_forceNotLaptop(false)
50
 
 , m_forceDocked(false)
 
46
   : QObject()
 
47
   , m_forceLaptop(false)
 
48
   , m_forceLidClosed(false)
 
49
   , m_forceNotLaptop(false)
 
50
   , m_forceDocked(false)
51
51
{
52
 
    connect(Device::self(), SIGNAL(ready()), SIGNAL(ready()));
 
52
    connect(Device::self(), &Device::ready, this, &Generator::ready);
53
53
}
54
54
 
55
55
void Generator::destroy()