~lightdm-team/lightdm/1.4

« back to all changes in this revision

Viewing changes to greeters/qt/panel.cpp

  • Committer: David Edmundson
  • Date: 2011-05-21 19:15:11 UTC
  • mto: This revision was merged to the branch mainline in revision 460.
  • Revision ID: david@davidedmundson.co.uk-20110521191511-lqpby42budsrobja
Move library into a folder which matches it's namespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "panel.h"
2
2
#include "ui_panel.h"
3
3
 
4
 
#include <LdmGreeter>
5
 
#include <LdmSessionsModel>
 
4
#include <QLightDM/Greeter>
 
5
#include <QLightDM/SessionsModel>
6
6
 
7
7
#include <QMenu>
8
8
#include <QAction>
9
9
#include <QIcon>
10
10
 
11
 
Panel::Panel(LdmGreeter *greeter, QWidget *parent):
 
11
Panel::Panel(QLightDM::Greeter *greeter, QWidget *parent):
12
12
    m_greeter(greeter),
13
13
    QWidget(parent),
14
14
    ui(new Ui::Panel)