summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-06-11 20:09:03 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-06-11 20:09:03 +0000
commitbbd8d01ee5bbf5c27d7fe5044a8d51a624e480ae (patch)
tree6a47a2ac754726720e10b2510f4befc8a1daff1f /src
parenta0cef1d43a718ea27333293280347a19a914c9a3 (diff)
- typo fix;
git-svn-id: http://svn.miranda-ng.org/main/trunk@14124 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r--src/modules/database/dbutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/database/dbutils.cpp b/src/modules/database/dbutils.cpp
index 2e7ef5de9e..880e8a59d8 100644
--- a/src/modules/database/dbutils.cpp
+++ b/src/modules/database/dbutils.cpp
@@ -168,7 +168,7 @@ static INT_PTR DbEventGetText(WPARAM wParam, LPARAM lParam)
ptrT &ptszText = (mir_tstrlen(tszDescription) == 0) ? tszFileName : tszDescription;
switch (egt->datatype) {
case DBVT_WCHAR:
- return (INT_PTR)ptszText.detouch();
+ return (INT_PTR)ptszText.detach();
case DBVT_ASCIIZ:
return (INT_PTR)mir_t2a(ptszText);
}