# HG changeset patch # User Raimund Renkert # Date 1395832895 -3600 # Node ID 246c21b1727f5eba3ae03109581df6d36de626a7 # Parent 1a66a15d0df842567d2571eca3e614bcbbb74b60 Show the help dialog. diff -r 1a66a15d0df8 -r 246c21b1727f ui/mainwindow.cpp --- a/ui/mainwindow.cpp Wed Mar 26 11:46:42 2014 +0100 +++ b/ui/mainwindow.cpp Wed Mar 26 12:21:35 2014 +0100 @@ -26,6 +26,7 @@ #include "certificatelist.h" #include "downloader.h" #include "listupdatedialog.h" +#include "helpdialog.h" MainWindow::MainWindow() { createActions(); @@ -290,6 +291,8 @@ void MainWindow::showHelp() { qDebug() << "show helpdialog"; + HelpDialog *help = new HelpDialog(this); + help->show(); } void MainWindow::showAbout()