~ubuntu-branches/ubuntu/karmic/muse/karmic-proposed

« back to all changes in this revision

Viewing changes to widgets/ctrlcombo.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//=========================================================
 
2
//  MusE
 
3
//  Linux Music Editor
 
4
//  $Id: ctrlcombo.h,v 1.2 2001/11/20 15:19:34 muse Exp $
 
5
//
 
6
//  (C) Copyright 1999/2000 Werner Schweer (ws@seh.de)
 
7
//=========================================================
 
8
 
 
9
#ifndef __CTRLGRP_H__
 
10
#define __CTRLGRP_H__
 
11
 
 
12
#include <qcombobox.h>
 
13
 
 
14
class CtrlComboBox : public QComboBox {
 
15
      Q_OBJECT
 
16
   public:
 
17
      CtrlComboBox(QWidget* parent, const char* name = 0);
 
18
      };
 
19
 
 
20
 
 
21
#endif
 
22