diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-05-21 03:10:12 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-05-21 03:10:12 +0000 |
| commit | 820bc54980b906042c0b5231147caea2059af7c9 (patch) | |
| tree | b7f6da88e1e879ab65f7172b04a17f63f61538bf /pokemod/Object.cpp | |
| parent | d910d8ec38e0c33eeb32b7ceaaea9b40632cbd17 (diff) | |
| download | sigen-820bc54980b906042c0b5231147caea2059af7c9.tar.gz sigen-820bc54980b906042c0b5231147caea2059af7c9.tar.xz sigen-820bc54980b906042c0b5231147caea2059af7c9.zip | |
[FIX] Added a command widget
[FIX] More unneeded code in widget ctors removed
[FIX] Changed command delimiter to @ from %
[FIX] Request to save factored out of ObjectUI
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@158 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Object.cpp')
| -rw-r--r-- | pokemod/Object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemod/Object.cpp b/pokemod/Object.cpp index b0e868a1..55b1be9c 100644 --- a/pokemod/Object.cpp +++ b/pokemod/Object.cpp @@ -79,12 +79,12 @@ QString Object::size(const QString& variable) QString Object::subclass(const QString& subclass, const int id) { - return QString("Duplicate %1 with id %2").arg(subclass).arg(id); + return QString("Duplicate %1 with id %2").arg(subclass, id); } QString Object::subclass(const QString& subclass, const QString& name) { - return QString("Duplicate %1 with name %2").arg(subclass).arg(name); + return QString("Duplicate %1 with name %2").arg(subclass, name); } void Object::clear() |
