blob: 975a826ed60083ec8295a78cf412aaf69396005b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// -*- C++ -*-
// optionDialogFontsWidget.h
//
// Part of KDVI - A DVI previewer for the KDE desktop environemt
//
// (C) 2003 Stefan Kebekus
// Distributed under the GPL
#ifndef OPTIONDIALOGFONTSWIDGET_H
#define OPTIONDIALOGFONTSWIDGET_H
#include "optionDialogFontsWidget_base.h"
class optionDialogFontsWidget : public optionDialogFontsWidget_base
{
Q_OBJECT
public:
optionDialogFontsWidget( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~optionDialogFontsWidget();
};
#endif // OPTIONDIALOGFONTSWIDGET_H
|