~lukas-kde/unity8/dashboard

« back to all changes in this revision

Viewing changes to plugins/LightDM/IntegratedLightDM/liblightdm/Greeter.cpp

  • Committer: Lukáš Tinkl
  • Date: 2017-01-26 12:13:17 UTC
  • mfrom: (2749.1.49 unity8)
  • Revision ID: lukas.tinkl@canonical.com-20170126121317-qms39s9pikclidbe
merge trunk, fix conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
bool Greeter::hasGuestAccountHint() const
51
51
{
52
 
    return true;
 
52
    return false;
53
53
}
54
54
 
55
55
QString Greeter::getHint(const QString &name) const
70
70
 
71
71
bool Greeter::showManualLoginHint() const
72
72
{
73
 
    return true;
 
73
    return false;
74
74
}
75
75
 
76
76
bool Greeter::showRemoteLoginHint() const
77
77
{
78
 
    return true;
 
78
    return false;
79
79
}
80
80
 
81
81
QString Greeter::selectUserHint() const
146
146
}
147
147
 
148
148
void Greeter::cancelAuthentication()
149
 
{}
 
149
{
 
150
    Q_D(Greeter);
 
151
    d->cancelAuthentication();
 
152
}
150
153
 
151
154
void Greeter::setLanguage (const QString &language)
152
155
{