diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-27 06:40:17 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-27 06:40:17 +0000 |
commit | efe91f205310de8ee21915a52b52c9250dd45f58 (patch) | |
tree | 9c2ed53a2ffa5e146433a4575e9827ba52ca9d8c /plugins/IEView/src/Template.cpp | |
parent | 29ffaea1683eb46f15745d5eee0e068ee1dc7953 (diff) |
added version info
added precompiled header
git-svn-id: http://svn.miranda-ng.org/main/trunk@3790 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/src/Template.cpp')
-rw-r--r-- | plugins/IEView/src/Template.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/IEView/src/Template.cpp b/plugins/IEView/src/Template.cpp index 940efa8bfd..ac6ced05d0 100644 --- a/plugins/IEView/src/Template.cpp +++ b/plugins/IEView/src/Template.cpp @@ -18,8 +18,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "Template.h"
-#include "Utils.h"
+
+#include "ieview_common.h"
TokenDef::TokenDef(const char *tokenString) {
this->tokenString = tokenString;
@@ -111,7 +111,7 @@ bool Template::equals(const char *name) { }
static TokenDef tokenNames[] = {
- TokenDef("%name%", Token::NAME, 0),
+ TokenDef("%name%", Token::INAME, 0),
TokenDef("%time%", Token::TIME, 0),
TokenDef("%text%", Token::TEXT, 0),
TokenDef("%date%", Token::DATE, 0),
@@ -131,7 +131,7 @@ static TokenDef tokenNames[] = { TokenDef("%statusMsg%", Token::STATUSMSG, 0),
TokenDef("%fileDesc%", Token::FILEDESC, 0),
- TokenDef("%\\name%", Token::NAME, 1),
+ TokenDef("%\\name%", Token::INAME, 1),
TokenDef("%\\time%", Token::TIME, 1),
TokenDef("%\\text%", Token::TEXT, 1),
TokenDef("%\\date%", Token::DATE, 1),
|