diff options
Diffstat (limited to 'tipper')
-rw-r--r-- | tipper/subst.cpp | 5 | ||||
-rw-r--r-- | tipper/tipper.mdsp | 10 | ||||
-rw-r--r-- | tipper/version.h | 2 |
3 files changed, 11 insertions, 6 deletions
diff --git a/tipper/subst.cpp b/tipper/subst.cpp index aeed3ac..266e8dd 100644 --- a/tipper/subst.cpp +++ b/tipper/subst.cpp @@ -28,6 +28,11 @@ void StripBBCodesInPlace(TCHAR *text) { read++;// skip the ']'
} else if(len - read >= 8 && (_tcsnicmp(text + read, _T("[/color]"), 8) == 0))
read += 8;
+ else if(len - read >= 5 && (_tcsnicmp(text + read, _T("[size"), 5) == 0)) {
+ while(read < len && text[read] != L']') read++;
+ read++;// skip the ']'
+ } else if(len - read >= 7 && (_tcsnicmp(text + read, _T("[/size]"), 7) == 0))
+ read += 7;
else {
if(text[read] != text[write]) text[write] = text[read];
read++; write++;
diff --git a/tipper/tipper.mdsp b/tipper/tipper.mdsp index 54ff494..57536d2 100644 --- a/tipper/tipper.mdsp +++ b/tipper/tipper.mdsp @@ -104,9 +104,9 @@ extraResourceOptions= 1=resource.rc
[Other]
[History]
-version.h,543
-m_tipper.h,760
-popwin.cpp,4146
-tipper.cpp,1265
message_pump.cpp,4377
-options.cpp,0
+tipper.cpp,1265
+popwin.cpp,4146
+m_tipper.h,760
+version.h,520
+options.cpp,648
diff --git a/tipper/version.h b/tipper/version.h index 372aed5..b69343d 100644 --- a/tipper/version.h +++ b/tipper/version.h @@ -4,7 +4,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 4
#define __RELEASE_NUM 0
-#define __BUILD_NUM 10
+#define __BUILD_NUM 11
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|