diff --git a/lsim.kdevelop.pcs b/lsim.kdevelop.pcs
index 5c6fa29..26dc375 100644
Binary files a/lsim.kdevelop.pcs and b/lsim.kdevelop.pcs differ
diff --git a/lsim.kdevses b/lsim.kdevses
index b80fc99..e94ac50 100644
--- a/lsim.kdevses
+++ b/lsim.kdevses
@@ -6,7 +6,7 @@
-
+
@@ -17,47 +17,47 @@
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
diff --git a/src/ReadMe b/src/ReadMe
deleted file mode 100644
index 87d23f7..0000000
--- a/src/ReadMe
+++ /dev/null
@@ -1,11 +0,0 @@
-READ THIS IN ORDER TO COMPILE THE Qt4 TEMPLATE
-----------------------------------------------
-
-Before compiling, check the Qt Options, go to
-Project->Project Options->C++ Support and open the Qt Options tab.
-
-Check that the Qt installation directory is correct for the Qt version you've chosen.
-
-------------------
-Andreas Pakulat
-July 2006
diff --git a/src/lsim.cpp b/src/lsim.cpp
index 6faeee1..939e6d2 100644
--- a/src/lsim.cpp
+++ b/src/lsim.cpp
@@ -159,8 +159,12 @@ void lsim::closeEvent (QCloseEvent *event) {
void lsim::about() {
QString aboutString;
- aboutString += "Simulation von Bewegten Ladungen in elektrischen und magnetischen Feldern... \n";
- aboutString += "gebaut am "+QString(__DATE__) + " um " + QString(__TIME__) + " Uhr";
+ aboutString += "lsim - Simulation von Bewegten Ladungen in elektrischen und magnetischen Feldern. \n";
+ aboutString += "geschrieben 2008/2009 von Peter Dahlberg im Rahmen der Facharbeit\n";
+ aboutString += "\n";
+ aboutString += "Dieses Programm ist freie Software unter der GPL Version 2 (http://www.gnu.org/licenses/gpl2.txt)\n";
+ aboutString += "\n";
+ aboutString += "Dieses Binary wurde kompiliert am "+QString(__DATE__) + " um " + QString(__TIME__) + " Uhr";
QMessageBox::about (this, tr ("\334ber lsim"),
aboutString);
}
@@ -181,8 +185,8 @@ void lsim::createActions() {
connect (acts.fullScreenAct, SIGNAL (toggled(bool)), this, SLOT (goToFullscreen(bool)));
connect (this, SIGNAL (fullScreenModeChanged(bool)), acts.fullScreenAct, SLOT (setChecked(bool)));
- acts.aboutAct = new QAction (tr ("&About"), this);
- acts.aboutAct->setStatusTip (tr ("Show the application's About box"));
+ acts.aboutAct = new QAction (tr ("&\334ber lsim"), this);
+ acts.aboutAct->setStatusTip (tr (""));
connect (acts.aboutAct, SIGNAL (triggered()), this, SLOT (about()));
acts.fileSaveAsAct = new QAction (tr ("&Speichern..."), this);
@@ -359,7 +363,7 @@ void lsim::createMenus() {
fileMenu->addSeparator();
fileMenu->addAction(acts.exitAct);
- editMenu = menuBar()->addMenu(tr("&Bearbeiten"));
+ //editMenu = menuBar()->addMenu(tr("&Bearbeiten"));
viewMenu = menuBar()->addMenu(tr("&Ansicht"));
@@ -370,7 +374,7 @@ void lsim::createMenus() {
viewMenu->addSeparator();
viewMenu->addAction(acts.fullScreenAct);
- helpMenu = menuBar()->addMenu (tr ("&Help"));
+ helpMenu = menuBar()->addMenu (tr ("&Hilfe"));
helpMenu->addAction (acts.aboutAct);
helpMenu->addAction (acts.aboutQtAct);