summaryrefslogtreecommitdiff
path: root/libopie2
authormickeyl <mickeyl>2004-04-06 10:00:16 (UTC)
committer mickeyl <mickeyl>2004-04-06 10:00:16 (UTC)
commitdde22f9a9bfcb4c6bcb6c7c6d07fdabb16b399cc (patch) (unidiff)
tree99706abcf20ecc0c08cb50c2384ec3e2e6530f38 /libopie2
parent1b7592f11a2499c3e7d6652dde1ee15fb661fce2 (diff)
downloadopie-dde22f9a9bfcb4c6bcb6c7c6d07fdabb16b399cc.zip
opie-dde22f9a9bfcb4c6bcb6c7c6d07fdabb16b399cc.tar.gz
opie-dde22f9a9bfcb4c6bcb6c7c6d07fdabb16b399cc.tar.bz2
use include "" inside .cpp to play nice with external build systems
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/otimepicker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opieui/otimepicker.cpp b/libopie2/opieui/otimepicker.cpp
index 7de0fd3..d741c7e 100644
--- a/libopie2/opieui/otimepicker.cpp
+++ b/libopie2/opieui/otimepicker.cpp
@@ -1,63 +1,63 @@
1/* 1/*
2 This file is part of the Opie Project 2 This file is part of the Opie Project
3 Copyright (C) Stefan Eilers <eilers.stefan@epost.de> 3 Copyright (C) Stefan Eilers <eilers.stefan@epost.de>
4 =. Copyright (C) The Opie Team <opie-devel@handhelds.org> 4 =. Copyright (C) The Opie Team <opie-devel@handhelds.org>
5 .=l. 5 .=l.
6           .>+-= 6           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 7 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 8.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 10.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; either version 2 of the License, 11 - .   .-<_>     .<> Foundation; either version 2 of the License,
12     ._= =}       : or (at your option) any later version. 12     ._= =}       : or (at your option) any later version.
13    .%`+i>       _;_. 13    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 14    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 20++=   -.     .`     .: details.
21 :     =  ...= . :.=- 21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29 29
30/* OPIE */ 30/* OPIE */
31#include <opie2/otimepicker.h> 31#include "otimepicker.h"
32 32
33/* QT */ 33/* QT */
34#include <qgroupbox.h> 34#include <qgroupbox.h>
35#include <qlayout.h> 35#include <qlayout.h>
36#include <qlineedit.h> 36#include <qlineedit.h>
37 37
38 38
39 39
40namespace Opie { 40namespace Opie {
41namespace Ui { 41namespace Ui {
42 42
43/** 43/**
44 * Constructs the widget 44 * Constructs the widget
45 * @param parent The parent of the OTimePicker 45 * @param parent The parent of the OTimePicker
46 * @param name The name of the object 46 * @param name The name of the object
47 * @param fl Window Flags 47 * @param fl Window Flags
48 */ 48 */
49OTimePicker::OTimePicker(QWidget* parent, const char* name, Qt::WFlags fl) 49OTimePicker::OTimePicker(QWidget* parent, const char* name, Qt::WFlags fl)
50 :QWidget(parent,name,fl) 50 :QWidget(parent,name,fl)
51{ 51{
52 QVBoxLayout *vbox=new QVBoxLayout(this); 52 QVBoxLayout *vbox=new QVBoxLayout(this);
53 53
54 OClickableLabel *r; 54 OClickableLabel *r;
55 QString s; 55 QString s;
56 56
57 // Hour Row 57 // Hour Row
58 QWidget *row=new QWidget(this); 58 QWidget *row=new QWidget(this);
59 QHBoxLayout *l=new QHBoxLayout(row); 59 QHBoxLayout *l=new QHBoxLayout(row);
60 vbox->addWidget(row); 60 vbox->addWidget(row);
61 61
62 for (int i=0; i<24; i++) 62 for (int i=0; i<24; i++)
63 { 63 {