1 /***************************************************************************
2  *   copyright       : (C) 2003-2017 by Pascal Brachet                     *
3  *   http://www.xm1math.net/texmaker/                                      *
4  *                                                                         *
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  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  ***************************************************************************/
11 
12 #include "addoptiondialog.h"
13 
14 
AddOptionDialog(QWidget * parent,const char * name)15 AddOptionDialog::AddOptionDialog(QWidget *parent, const char *name)
16     : QDialog( parent)
17 {
18 setWindowTitle(name);
19 setModal(true);
20 ui.setupUi(this);
21 }
~AddOptionDialog()22 AddOptionDialog::~AddOptionDialog()
23 {
24 }
25 
26