diff --git a/mainwindow.cpp b/mainwindow.cpp
index d2c1e9ca..ab921039 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -181,3 +181,17 @@ void MainWindow::on_webView_loadProgress(int progress)
{
qprogress->setValue(progress);
}
+
+void MainWindow::on_action_About_triggered()
+{
+ QString msg="
SleepyHead v0.8.0
\
+Copyright ©2011 Mark Watkins (jedimark)
\n\
+
http://sleepyhead.sourceforge.net
\
+This software is released under the GNU Public License
\
+
This software comes with absolutely no warranty, either express of implied. It comes with no guarantee of fitness for any particular purpose. No guarantees are made regarding the accuracy of any data this program displays.\
+ ";
+ QMessageBox msgbox(QMessageBox::Information,"About SleepyHead","",QMessageBox::Ok,this);
+ msgbox.setTextFormat(Qt::RichText);
+ msgbox.setText(msg);
+ msgbox.exec();
+}
diff --git a/mainwindow.h b/mainwindow.h
index ed52632b..6ad62282 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -58,6 +58,8 @@ private slots:
void on_webView_loadProgress(int progress);
+ void on_action_About_triggered();
+
private:
Ui::MainWindow *ui;
Daily * daily;