summaryrefslogtreecommitdiffstats
path: root/pokemod/Pokemod.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-04-27 17:57:32 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-04-27 17:57:32 +0000
commit0fa52c1f61c457c9b68bec53bcce3af858e5eb44 (patch)
treec5b10b77a01b417775097476029bcf67fac79975 /pokemod/Pokemod.cpp
parent807071d35159de0660f9df31c48d5bf895ca3622 (diff)
downloadsigen-0fa52c1f61c457c9b68bec53bcce3af858e5eb44.tar.gz
sigen-0fa52c1f61c457c9b68bec53bcce3af858e5eb44.tar.xz
sigen-0fa52c1f61c457c9b68bec53bcce3af858e5eb44.zip
[FIX] More header cleanliness
[FIX] UI classes now just use the ObjectUI pointers [FIX] Some miscellaneous qmake options git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@112 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Pokemod.cpp')
-rw-r--r--pokemod/Pokemod.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/pokemod/Pokemod.cpp b/pokemod/Pokemod.cpp
index e4191a85..77ed6011 100644
--- a/pokemod/Pokemod.cpp
+++ b/pokemod/Pokemod.cpp
@@ -39,9 +39,6 @@
// Qt includes
#include <QBuffer>
-#include <QMap>
-#include <QTextStream>
-#include <QTime>
const QStringList Pokemod::ValidationStr = QStringList() << "Message" << "Warn" << "Error";
const QStringList Pokemod::StatRBYStr = QStringList() << "HP" << "Attack" << "Defense" << "Speed" << "Special" << "Special" << "Accuracy" << "Evasion";
@@ -463,7 +460,7 @@ void Pokemod::validationMsg(const QString& message, const Validation level) cons
throw(Exception(className(), "valOutput isn\'t set"));
if (V_End < level)
warning<BoundsException>("level");
- (*valOutput) << ValidationStr[level] << QDateTime::currentDateTime().toString(" (yyyyMMdd hh:mm:ss.zzz ddd): ") << message;
+ (*valOutput) << ValidationStr[level] << ": " << message;
}
void Pokemod::setValOutput(QStringList& s)