From 69f098ce2dff7dc87607fcccafc550a965ca6e6a Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 21 Jul 2013 18:16:36 +0000 Subject: remove not used functions git-svn-id: http://svn.miranda-ng.org/main/trunk@5443 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/VersionInfo/src/dlgHandlers.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/VersionInfo/src/dlgHandlers.cpp') diff --git a/plugins/VersionInfo/src/dlgHandlers.cpp b/plugins/VersionInfo/src/dlgHandlers.cpp index e6242c6bf6..d7e9024894 100644 --- a/plugins/VersionInfo/src/dlgHandlers.cpp +++ b/plugins/VersionInfo/src/dlgHandlers.cpp @@ -259,9 +259,9 @@ INT_PTR CALLBACK DlgProcOpts(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) TCHAR notFound[1024]; if (db_get_ts(NULL, ModuleName, "OutputFile", &dbv) == 0) - RelativePathToAbsolute(dbv.ptszVal, notFound, SIZEOF(notFound)); + PathToAbsoluteT(dbv.ptszVal, notFound); else - RelativePathToAbsolute( _T("VersionInfo.txt"), notFound, SIZEOF(notFound)); + PathToAbsoluteT(_T("VersionInfo.txt"), notFound); if (hOutputLocation) _tcscpy(buffer, TranslateT("Customize using folders plugin")); @@ -463,7 +463,7 @@ INT_PTR CALLBACK DlgProcOpts(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) if (!hOutputLocation) { TCHAR filePath[MAX_PATH], fileName[MAX_PATH]; GetDlgItemText(hWnd, IDC_FILENAME, fileName, MAX_PATH); - AbsolutePathToRelative(fileName, filePath, SIZEOF(filePath)); + PathToRelativeT(fileName, filePath); db_set_ts(NULL, ModuleName, "OutputFile", filePath); //store relative path } -- cgit v1.2.3