# HG changeset patch
# User insilmaril
# Date 1177516974 0
# Node ID 84b37cc9e63efa72f8a0cec20d93a2e72fe2dbc1
# Parent  80529c03702bf49de6bc7ac526f5cf17a8f84c88
started doxygen documentation

diff -r 80529c03702b -r 84b37cc9e63e aboutdialog.cpp
--- a/aboutdialog.cpp	Wed Apr 11 09:21:18 2007 +0000
+++ b/aboutdialog.cpp	Wed Apr 25 16:02:54 2007 +0000
@@ -10,6 +10,7 @@
 extern QString iconPath;
 extern QString vymVersion;
 extern QString vymBuildDate;
+extern QString vymCodeName;
 
 AboutDialog::AboutDialog( QWidget *parent, const char *name)
     : QDialog( parent, name)
@@ -26,6 +27,7 @@
 	"<p align=\"center\"> A tool to put the things you have got in your mind into a map.</p>"
 	"<p align=\"center\"> (c) by Uwe Drechsel (<a href=\"mailto:vym@InSilmaril.de\">vym@InSilmaril.de</a>)</p>"
 	"<p align=\"center\"> Version " +vymVersion+" - " +vymBuildDate+"</p>"
+	"<p align=\"center\"> " +vymCodeName+"</p>"
 	"<ul>"
 	"<li> Contact</li>"
 		"<ul>"
diff -r 80529c03702b -r 84b37cc9e63e exportxhtmldialog.h
--- a/exportxhtmldialog.h	Wed Apr 11 09:21:18 2007 +0000
+++ b/exportxhtmldialog.h	Wed Apr 25 16:02:54 2007 +0000
@@ -3,6 +3,13 @@
 
 #include "ui_exportxhtmldialog.h"
 
+/*! \brief Dialog to export a map as XHTML document
+
+This is an overloaded QDialog with various settings needed to call
+convert the vym.xml to a XHTML document. 
+The conversion itself is done by calling xsltproc.
+*/
+
 class ExportXHTMLDialog:public QDialog
 {
 	Q_OBJECT