diff options
Diffstat (limited to 'src/pmtime/seealsodialog.cpp')
-rw-r--r-- | src/pmtime/seealsodialog.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pmtime/seealsodialog.cpp b/src/pmtime/seealsodialog.cpp new file mode 100644 index 0000000..ae663e8 --- /dev/null +++ b/src/pmtime/seealsodialog.cpp @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2007, Aconex. All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ +#include "seealsodialog.h" + +SeeAlsoDialog::SeeAlsoDialog(QWidget* parent) : QDialog(parent) +{ + setupUi(this); +} + +void SeeAlsoDialog::seeAlsoOKButton_clicked() +{ + done(0); +} |