~ubuntu-branches/ubuntu/wily/kwin/wily-proposed

« back to all changes in this revision

Viewing changes to autotests/mock_screens.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-08-10 23:16:37 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20150810231637-5zb2tstjkez93hml
Tags: 4:5.3.95-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
QString MockScreens::name(int screen) const
41
41
{
 
42
    Q_UNUSED(screen);
42
43
    return QLatin1String("MoccaScreen"); // mock-a-screen =)
43
44
}
44
45
 
45
46
float MockScreens::refreshRate(int screen) const
46
47
{
 
48
    Q_UNUSED(screen);
47
49
    return 60.0f;
48
50
}
49
51