From 5b2ee2b81707dbe201ddcf6706c975a7cf7e7f6d Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 14 Sep 2008 11:18:29 +0000 Subject: Avoid warning. --- win32/PlatWin.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 76819b8a7..7345fc8f2 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -687,11 +687,11 @@ public: }; const int stackBufferLength = 10000; -typedef VarBuffer TextWideT; -class TextWide : public TextWideT { +class TextWide : public VarBuffer { public: int tlen; - TextWide(const char *s, int len, bool unicodeMode, int codePage=0) : TextWideT(len) { + TextWide(const char *s, int len, bool unicodeMode, int codePage=0) : + VarBuffer(len) { if (unicodeMode) { tlen = UTF16FromUTF8(s, len, buffer, len); } else { -- cgit v1.2.3