Subversion Repositories public

Rev

Rev 88 | Rev 245 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 88 Rev 232
Line 1... Line 1...
1
/***************************************************************************
1
/***************************************************************************
2
 *   Copyright (C) 2007 by Andreas Theofilu                               *
2
 *   Copyright (C) 2007 - 2009 by Andreas Theofilu                         *
3
 *   andreas@theosys.at                                               *
3
 *   andreas@theosys.at                                                    *
4
 *                                                                         *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation version 3 of the License.                *
7
 *   the Free Software Foundation version 3 of the License.                *
8
 *                                                                         *
8
 *                                                                         *
Line 22... Line 22...
22
#include <klocale.h>
22
#include <klocale.h>
23
 
23
 
24
#include "sportwatcher.h"
24
#include "sportwatcher.h"
25
#include "sportwatcherwidget.h"
25
#include "sportwatcherwidget.h"
26
 
26
 
27
sportwatcher::sportwatcher()
27
sportwatcher::sportwatcher(QWidget *parent, Qt::WindowFlags f)
28
    : KMainWindow( 0, "sportwatcher" )
28
	: KMainWindow(parent, f)
29
{
29
{
30
    setCentralWidget( new sportwatcherWidget( this ) );
30
    setCentralWidget( new sportwatcherWidget( this ) );
31
}
31
}
32
 
32
 
33
sportwatcher::~sportwatcher()
33
sportwatcher::~sportwatcher()