From a993efb0503615efb7a3bcdce1ce91575448e789 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 10 Jul 2012 12:33:30 +0000 Subject: - tooltips for TopToolbar buttons - replaceStr/replaceStrW moved to mir_core git-svn-id: http://svn.miranda-ng.org/main/trunk@886 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/mir_core/mir_core.def | 2 ++ src/mir_core/mir_core_10.vcxproj | 2 +- src/mir_core/utils.cpp | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/mir_core/mir_core.def b/src/mir_core/mir_core.def index 43dd94d7ac..2939f2feda 100644 --- a/src/mir_core/mir_core.def +++ b/src/mir_core/mir_core.def @@ -124,3 +124,5 @@ db_set_w @121 db_set_ws @122 UnloadCoreModule @123 Thread_SetName @124 +replaceStr @125 +replaceStrW @126 \ No newline at end of file diff --git a/src/mir_core/mir_core_10.vcxproj b/src/mir_core/mir_core_10.vcxproj index 03ea9c52e1..e5f452eb61 100644 --- a/src/mir_core/mir_core_10.vcxproj +++ b/src/mir_core/mir_core_10.vcxproj @@ -48,7 +48,7 @@ - Mir_core + mir_core {D9EFEA4B-B817-4DE1-BD62-68A5DB8F5F60} diff --git a/src/mir_core/utils.cpp b/src/mir_core/utils.cpp index 4ebba2f293..12aad9d8a9 100644 --- a/src/mir_core/utils.cpp +++ b/src/mir_core/utils.cpp @@ -23,6 +23,22 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "commonheaders.h" +MIR_CORE_DLL(char*) replaceStr( char* &dest, const char *src ) +{ + if ( dest != NULL ) + mir_free( dest ); + + return dest = ( src != NULL ) ? mir_strdup( src ) : NULL; +} + +MIR_CORE_DLL(WCHAR*) replaceStrW( WCHAR* &dest, const WCHAR *src ) +{ + if ( dest != NULL ) + mir_free( dest ); + + return dest = ( src != NULL ) ? mir_wstrdup( src ) : NULL; +} + MIR_CORE_DLL(char*) rtrim(char* str) { if (str == NULL) -- cgit v1.2.3