From 816d3b463aa23516dc25c934c41d6483d9e3d3f5 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Tue, 11 Nov 2014 19:27:54 +0000 Subject: fixed vi info in command line git-svn-id: http://svn.miranda-ng.org/main/trunk@10957 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/CmdLine/src/commonheaders.h | 2 +- plugins/CmdLine/src/mimcmd_handlers.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/CmdLine') diff --git a/plugins/CmdLine/src/commonheaders.h b/plugins/CmdLine/src/commonheaders.h index becf33539c..ec60fefd5f 100644 --- a/plugins/CmdLine/src/commonheaders.h +++ b/plugins/CmdLine/src/commonheaders.h @@ -38,7 +38,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "m_message.h" #include "m_ignore.h" -#include "m_versioninfo.h" +#include "m_crashdumper.h" #include "m_statusplugins.h" #include "version.h" diff --git a/plugins/CmdLine/src/mimcmd_handlers.cpp b/plugins/CmdLine/src/mimcmd_handlers.cpp index 3b03a87982..8c62e69617 100644 --- a/plugins/CmdLine/src/mimcmd_handlers.cpp +++ b/plugins/CmdLine/src/mimcmd_handlers.cpp @@ -1734,10 +1734,10 @@ void HandleVersionCommand(PCommand command, TArgument *argv, int argc, PReply re if (argc == 2) { reply->code = MIMRES_SUCCESS; - if (ServiceExists(MS_VERSIONINFO_GETINFO)) + if (ServiceExists(MS_CRASHDUMPER_GETINFO)) { char *data; - CallService(MS_VERSIONINFO_GETINFO, (WPARAM) FALSE, (LPARAM) &data); + CallService(MS_CRASHDUMPER_GETINFO, (WPARAM)FALSE, (LPARAM)&data); mir_snprintf(reply->message, reply->cMessage, data); mir_free(data); } -- cgit v1.2.3