Mon, 18 Mar 2013 12:24:16 +0200
and of course I forget to update ldforge.pro... or to test compile for that matter
#include <qdialog.h> #include <qlineedit.h> #include <qlabel.h> #include <qdialogbuttonbox.h> #include "common.h" class Dialog_SetContents : public QDialog { public: QLabel* qContentsLabel; QLineEdit* qContents; QDialogButtonBox* qOKCancel; LDObject* patient; Dialog_SetContents (LDObject* obj, QWidget* parent = nullptr); static void staticDialog (LDObject* obj, ForgeWindow* parent); private slots: void slot_handleButtons (QAbstractButton* qButton); };