~ubuntu-branches/debian/jessie/italc/jessie

« back to all changes in this revision

Viewing changes to ima/src/config_widget.h

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2011-02-11 14:50:22 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20110211145022-sn173siax6lywjus
Tags: upstream-1.0.13
ImportĀ upstreamĀ versionĀ 1.0.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * config_widget.h - configuration-widget for side-bar
3
3
 *
4
 
 * Copyright (c) 2004-2008 Tobias Doerffel <tobydox/at/users/dot/sf/dot/net>
 
4
 * Copyright (c) 2004-2010 Tobias Doerffel <tobydox/at/users/dot/sf/dot/net>
5
5
 *
6
6
 * This file is part of iTALC - http://italc.sourceforge.net
7
7
 *
22
22
 *
23
23
 */
24
24
 
25
 
 
26
25
#ifndef _CONFIG_WIDGET_H
27
26
#define _CONFIG_WIDGET_H
28
27
 
29
 
#include "side_bar_widget.h"
 
28
#include "SideBarWidget.h"
30
29
#include "dialogs/config.uic"
31
30
 
32
31
 
33
 
class configWidget : public sideBarWidget, private Ui::config
 
32
class configWidget : public SideBarWidget, private Ui::config
34
33
{
35
34
        Q_OBJECT
36
35
public:
37
 
        configWidget( mainWindow * _main_window, QWidget * _parent );
 
36
        configWidget( MainWindow * _main_window, QWidget * _parent );
38
37
        virtual ~configWidget();
39
38
 
40
39