File indexing completed on 2024-04-21 04:03:09

0001 /***************************************************************************
0002                                cmappropertiespanebase.cpp
0003                              -------------------
0004     begin                : Mon Aug 6 2001
0005     copyright            : (C) 2001 by Kmud Developer Team
0006     email                : kmud-devel@kmud.de
0007  ***************************************************************************/
0008 
0009 /***************************************************************************
0010  *                                                                         *
0011  *   This program is free software; you can redistribute it and/or modify  *
0012  *   it under the terms of the GNU General Public License as published by  *
0013  *   the Free Software Foundation; either version 2 of the License, or     *
0014  *   (at your option) any later version.                                   *
0015  *                                                                         *
0016  ***************************************************************************/
0017 
0018 #include "cmappropertiespanebase.h"
0019 
0020 CMapPropertiesPaneBase::CMapPropertiesPaneBase(QString title,QIcon * icon,elementTyp panelType,CMapElement *element,QWidget *parent)
0021     : QWidget(parent)
0022 {
0023     setIcon(icon);
0024     setPanelType(panelType);
0025     setTitle(title);
0026     setElement(element);
0027 }
0028 
0029 #include "moc_cmappropertiespanebase.cpp"