summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/opieui.pro2
-rw-r--r--libopie2/opieui/otoolbar.cpp41
-rw-r--r--libopie2/opieui/otoolbar.h55
3 files changed, 0 insertions, 98 deletions
diff --git a/libopie2/opieui/opieui.pro b/libopie2/opieui/opieui.pro
index 6f197a4..cfb591c 100644
--- a/libopie2/opieui/opieui.pro
+++ b/libopie2/opieui/opieui.pro
@@ -16,3 +16,2 @@ HEADERS = olistview.h \
16 oresource.h \ 16 oresource.h \
17 otoolbar.h \
18 oseparator.h 17 oseparator.h
@@ -31,3 +30,2 @@ SOURCES = olistview.cpp \
31 oresource.cpp \ 30 oresource.cpp \
32 otoolbar.cpp \
33 oseparator.cpp 31 oseparator.cpp
diff --git a/libopie2/opieui/otoolbar.cpp b/libopie2/opieui/otoolbar.cpp
deleted file mode 100644
index c7f2727..0000000
--- a/libopie2/opieui/otoolbar.cpp
+++ b/dev/null
@@ -1,41 +0,0 @@
1/*
2                 This file is part of the Opie Project
3
4              Copyright (C) 2003 Patrick S. Vogt <tille@handhelds.org>
5 =.
6 .=l.
7           .>+-=
8 _;:,     .>    :=|. This program is free software; you can
9.> <`_,   >  .   <= redistribute it and/or modify it under
10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11.="- .-=="i,     .._ License as published by the Free Software
12 - .   .-<_>     .<> Foundation; either version 2 of the License,
13     ._= =}       : or (at your option) any later version.
14    .%`+i>       _;_.
15    .i_,=:_.      -<s. This program is distributed in the hope that
16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
17    : ..    .:,     . . . without even the implied warranty of
18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
20..}^=.=       =       ; Library General Public License for more
21++=   -.     .`     .: details.
22 :     =  ...= . :.=-
23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA.
29*/
30
31#include "otoolbar.h"
32
33OToolBar::OToolBar( QMainWindow *parent, const char* name)
34#ifdef QWS
35 : QPEToolBar(parent, name)
36#else
37 : QToolBar(parent, name)
38#endif
39{
40
41}
diff --git a/libopie2/opieui/otoolbar.h b/libopie2/opieui/otoolbar.h
deleted file mode 100644
index e16d8df..0000000
--- a/libopie2/opieui/otoolbar.h
+++ b/dev/null
@@ -1,55 +0,0 @@
1/*
2                 This file is part of the Opie Project
3
4              Copyright (C) 2003 Patrick S. Vogt <tille@handhelds.org>
5 =.
6 .=l.
7           .>+-=
8 _;:,     .>    :=|. This program is free software; you can
9.> <`_,   >  .   <= redistribute it and/or modify it under
10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11.="- .-=="i,     .._ License as published by the Free Software
12 - .   .-<_>     .<> Foundation; either version 2 of the License,
13     ._= =}       : or (at your option) any later version.
14    .%`+i>       _;_.
15    .i_,=:_.      -<s. This program is distributed in the hope that
16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
17    : ..    .:,     . . . without even the implied warranty of
18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
20..}^=.=       =       ; Library General Public License for more
21++=   -.     .`     .: details.
22 :     =  ...= . :.=-
23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA.
29*/
30
31#ifndef OTOOLBAR_H
32#define OTOOLBAR_H
33
34
35
36#ifdef QWS
37#include <qpe/qpetoolbar.h>
38#else
39#include <qtoolbar.h>
40#endif
41
42
43
44class OToolBar
45#ifdef QWS
46: public QPEToolBar
47#else
48: public QToolBar
49#endif
50{
51 public:
52 OToolBar( QMainWindow *parent=0, const char* name = 0);
53};
54
55#endif // OAPPLICATION_H