author | harlekin <harlekin> | 2003-04-26 19:08:48 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-04-26 19:08:48 (UTC) |
commit | 9dfeb5f74c0d7f9611ec440e6e7760d2f19f73ae (patch) (side-by-side diff) | |
tree | d2e0d087e684d7df9e1b4ad0c90d877230b1b198 | |
parent | e2d44ce9293a3db6710753c2e7e2c38a54f60faf (diff) | |
download | opie-9dfeb5f74c0d7f9611ec440e6e7760d2f19f73ae.zip opie-9dfeb5f74c0d7f9611ec440e6e7760d2f19f73ae.tar.gz opie-9dfeb5f74c0d7f9611ec440e6e7760d2f19f73ae.tar.bz2 |
- some includes
-rw-r--r-- | core/applets/clockapplet/clock.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/core/applets/clockapplet/clock.cpp b/core/applets/clockapplet/clock.cpp index bcecab4..5fb8f44 100644 --- a/core/applets/clockapplet/clock.cpp +++ b/core/applets/clockapplet/clock.cpp @@ -7,48 +7,36 @@ ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/gpl/ for GPL licensing information. ** ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ #include "clock.h" -#include <qpe/global.h> #include <qpe/qpeapplication.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/config.h> -#include <qmainwindow.h> -#include <qlayout.h> -#include <qpushbutton.h> -#include <qmessagebox.h> -#include <qdatetime.h> -#include <qtimer.h> -#include <qpopupmenu.h> -#include <qfile.h> -#include <stdlib.h> - - LauncherClock::LauncherClock( QWidget *parent ) : QLabel( parent ) { // If you want a sunken border around the clock do this: // setFrameStyle( QFrame::Panel | QFrame::Sunken ); //setFont( QFont( "Helvetica", , QFont::Normal ) ); connect( qApp, SIGNAL( timeChanged() ), this, SLOT( updateTime( ) ) ); connect( qApp, SIGNAL( clockChanged( bool ) ), this, SLOT( slotClockChanged( bool ) ) ); readConfig(); timerId = 0; timerEvent( 0 ); show(); } void LauncherClock::readConfig() { Config config( "qpe" ); |