~ubuntu-branches/ubuntu/raring/muse/raring

« back to all changes in this revision

Viewing changes to muse/mixer/routedialog.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-08-12 11:16:41 UTC
  • mfrom: (1.1.9) (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20110812111641-sjz0e93fr0ozfv0b
Tags: 2.0~beta2-1
* New maintainer (see bug 637185#12), thanks Daniel!
* New upstream release (Closes: #627371):
  - New interface Qt4-based (Closes: #604584)
* Refresh packaging:
  - Move to DH7 and source format 3.0 (quilt).
  - Refresh patchset.
  - Fix a bunch lintian warnings.
  - debian/postinst:
    + Use set -e in the body rather than pass -e on the #! line to make it
      have actually effect if it is run by hand with "sh /path/to/script".
  - Update instructions on how-to increase RTC clock frequency.
    Thanks to Torquil Macdonald Sørensen for the report (Closes: #570833).
  - Bump Standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#ifndef __ROUTEDIALOG_H__
10
10
#define __ROUTEDIALOG_H__
11
11
 
12
 
#include "routedialogbase.h"
 
12
#include "ui_routedialogbase.h"
 
13
 
 
14
class QCloseEvent;
 
15
class QDialog;
13
16
 
14
17
//---------------------------------------------------------
15
18
//   RouteDialog
16
19
//---------------------------------------------------------
17
20
 
18
 
class RouteDialog : public RouteDialogBase {
 
21
class RouteDialog : public QDialog, public Ui::RouteDialogBase {
19
22
      Q_OBJECT
20
23
 
21
24
      virtual void closeEvent(QCloseEvent*);
33
36
      void closed();
34
37
 
35
38
   public:
36
 
      RouteDialog(QWidget* parent);
 
39
      RouteDialog(QWidget* parent=0);
37
40
      };
38
41
 
39
42