Added version information of the libraries to HelpDialog.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8446 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2015-06-14 17:45:26 +00:00
parent b0f7b70ea2
commit 0ca37f6756
14 changed files with 435 additions and 286 deletions

View file

@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
****************************************************************/
@ -24,28 +24,25 @@
#include <QFileDialog>
//#include "mainpage.h"
#include "ui_HelpDialog.h"
#include <retroshare/rstypes.h>
namespace Ui {
class HelpDialog;
}
class HelpDialog : public QDialog
{
Q_OBJECT
Q_OBJECT
public:
/** Default Constructor */
HelpDialog(QWidget *parent = 0);
/** Default Destructor */
private slots:
/** Default Constructor */
HelpDialog(QWidget *parent = 0);
/** Default Destructor */
virtual ~HelpDialog();
private:
/** Qt Designer generated object */
Ui::HelpDialog ui;
/** Qt Designer generated object */
Ui::HelpDialog *ui;
};
#endif