summaryrefslogtreecommitdiff
path: root/plugins/SeenPlugin/src/history.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-07-23 20:25:27 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-07-23 20:25:27 +0000
commit35d4044e1958d2cd68553837a0da0829bd3b98f4 (patch)
tree5902a4fafebcdfaeda78c484f4baa6cab4b6ae7c /plugins/SeenPlugin/src/history.cpp
parente5cc66467b9b2ee4f1d3b8c25afa36e3c04e1428 (diff)
SeenPlugin:
now use precompiled header git-svn-id: http://svn.miranda-ng.org/main/trunk@1140 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin/src/history.cpp')
-rw-r--r--plugins/SeenPlugin/src/history.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SeenPlugin/src/history.cpp b/plugins/SeenPlugin/src/history.cpp
index 724cfd5612..fa90264fda 100644
--- a/plugins/SeenPlugin/src/history.cpp
+++ b/plugins/SeenPlugin/src/history.cpp
@@ -34,7 +34,7 @@ char* BuildSetting(int historyLast) {
static char sztemp[15];
*setting = '\0';
strcat(setting, "History_");
- strcat(setting, itoa(historyLast, sztemp, 10));
+ strcat(setting, _itot(historyLast, sztemp, 10));
return setting;
}