~mateo-salta/nitroshare/nitroshare

« back to all changes in this revision

Viewing changes to src/dialogs/CFirstStartWizard.cpp

  • Committer: Nathan Osman
  • Date: 2012-06-30 01:18:20 UTC
  • Revision ID: admin@quickmediasolutions.com-20120630011820-c8dz7p16fll1glro
Fixed a couple of bugs with the new broadcast class, added an icon to the wizard, and tweaked things a bit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
#include <QCloseEvent>
18
18
#include <QMessageBox>
 
19
#include <QPixmap>
19
20
 
20
21
#include <dialogs/CFirstStartWizard.h>
21
22
#include <util/settings.h>
25
26
    : ui(new Ui::CFirstStartWizard)
26
27
{
27
28
    ui->setupUi(this);
 
29
    setPixmap(LogoPixmap, QPixmap(":/images/config.png"));
28
30
 
29
31
    connect(this, SIGNAL(currentIdChanged(int)), SLOT(OnPageChanged(int)));
30
32