author | dwmw2 <dwmw2> | 2002-05-09 10:41:49 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-05-09 10:41:49 (UTC) |
commit | 949afcadb315911e1cbeeddc1635ef3202177072 (patch) (unidiff) | |
tree | 030c2e82630cc4c972a6cbc41de113d1d3f9c6a4 | |
parent | 87a873e57bc741baddf226388e889d19d36719ac (diff) | |
download | opie-949afcadb315911e1cbeeddc1635ef3202177072.zip opie-949afcadb315911e1cbeeddc1635ef3202177072.tar.gz opie-949afcadb315911e1cbeeddc1635ef3202177072.tar.bz2 |
Add missing #include <qpushbutton.h>
How did this ever compile?
-rw-r--r-- | core/applets/volumeapplet/volume.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/applets/volumeapplet/volume.h b/core/applets/volumeapplet/volume.h index 9fc12d8..3a2da43 100644 --- a/core/applets/volumeapplet/volume.h +++ b/core/applets/volumeapplet/volume.h | |||
@@ -10,32 +10,33 @@ | |||
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #ifndef __VOLUME_APPLET_H__ | 21 | #ifndef __VOLUME_APPLET_H__ |
22 | #define __VOLUME_APPLET_H__ | 22 | #define __VOLUME_APPLET_H__ |
23 | 23 | ||
24 | 24 | ||
25 | #include <qwidget.h> | 25 | #include <qwidget.h> |
26 | #include <qpushbutton.h> | ||
26 | #include <qframe.h> | 27 | #include <qframe.h> |
27 | #include <qpixmap.h> | 28 | #include <qpixmap.h> |
28 | #include <qguardedptr.h> | 29 | #include <qguardedptr.h> |
29 | #include <qtimer.h> | 30 | #include <qtimer.h> |
30 | 31 | ||
31 | class QSlider; | 32 | class QSlider; |
32 | class QCheckBox; | 33 | class QCheckBox; |
33 | 34 | ||
34 | class VolumeControl : public QFrame | 35 | class VolumeControl : public QFrame |
35 | { | 36 | { |
36 | Q_OBJECT | 37 | Q_OBJECT |
37 | public: | 38 | public: |
38 | VolumeControl( bool showMic=FALSE, QWidget *parent=0, const char *name=0 ); | 39 | VolumeControl( bool showMic=FALSE, QWidget *parent=0, const char *name=0 ); |
39 | 40 | ||
40 | public: | 41 | public: |
41 | QSlider *slider; | 42 | QSlider *slider; |