~ubuntu-branches/debian/jessie/italc/jessie

« back to all changes in this revision

Viewing changes to ima/src/dialogs.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2011-02-11 14:50:22 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20110211145022-sn173siax6lywjus
Tags: upstream-1.0.13
ImportĀ upstreamĀ versionĀ 1.0.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * dialogs.cpp - implementation of dialogs
3
3
 *
4
 
 * Copyright (c) 2006-2007 Tobias Doerffel <tobydox/at/users/dot/sf/dot/net>
 
4
 * Copyright (c) 2006-2010 Tobias Doerffel <tobydox/at/users/dot/sf/dot/net>
5
5
 *
6
6
 * This file is part of iTALC - http://italc.sourceforge.net
7
7
 *
22
22
 *
23
23
 */
24
24
 
25
 
 
26
25
#include <QtCore/QFile>
27
26
#include <QtCore/QRegExp>
28
27
 
31
30
 
32
31
 
33
32
aboutDialog::aboutDialog( QWidget * _parent ) :
34
 
        QDialog( _parent ? _parent->window() : _parent )
 
33
        QDialog( _parent )
35
34
{
36
35
        setupUi( this );
37
36
 
50
49
 
51
50
#include "client.h"
52
51
#include "classroom_manager.h"
53
 
#include "main_window.h"
 
52
#include "MainWindow.h"
54
53
#include "messagebox.h"
55
54
 
56
55
 
57
56
clientSettingsDialog::clientSettingsDialog( client * _client,
58
 
                                                mainWindow * _main_window,
 
57
                                                MainWindow * _main_window,
59
58
                                                const QString & _classroom ) :
60
59
        QDialog( _main_window ),
61
60
        Ui::clientSettings(),
143
142
 
144
143
 
145
144
textMessageDialog::textMessageDialog( QString & _msg_str, QWidget * _parent ) :
146
 
        QDialog( _parent ? _parent->window() : 0 ),
 
145
        QDialog( _parent ),
147
146
        Ui::textMessage(),
148
147
        m_msgStr( _msg_str )
149
148
{
163
162
 
164
163
 
165
164
remoteLogonDialog::remoteLogonDialog( QWidget * _parent ) :
166
 
        QDialog( _parent ? _parent->window() : 0 ),
 
165
        QDialog( _parent ),
167
166
        Ui::remoteLogon()
168
167
{
169
168
        setupUi( this );