replaced T() makro with wxT() due to namespace probs, _T() exists, too
fixed compilation problems, mainly in html code compiles and links fine on Solaris, runs with samples and Mahogany git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -99,7 +99,7 @@ bool wxGauge::Create(wxWindow *parent, wxWindowID id,
|
||||
msFlags |= ZYZGS_3D;
|
||||
|
||||
HWND wx_button =
|
||||
CreateWindowEx(MakeExtendedStyle(m_windowStyle), T("zYzGauge"), NULL, msFlags,
|
||||
CreateWindowEx(MakeExtendedStyle(m_windowStyle), wxT("zYzGauge"), NULL, msFlags,
|
||||
0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId,
|
||||
wxGetInstance(), NULL);
|
||||
|
||||
@@ -636,7 +636,7 @@ bool wxGauge::SetBackgroundColour(const wxColour& col)
|
||||
|
||||
|
||||
/* static global variables */
|
||||
//static wxChar gszzYzGaugeClass[] = T("zYzGauge");
|
||||
//static wxChar gszzYzGaugeClass[] = wxT("zYzGauge");
|
||||
|
||||
|
||||
/* window word position definitions */
|
||||
@@ -748,7 +748,7 @@ bool wxGauge::SetBackgroundColour(const wxColour& col)
|
||||
/* Get a DC to determine whether device is mono or not, and set
|
||||
* default foreground/background colors as appropriate.
|
||||
*/
|
||||
// hdc = CreateIC(T("DISPLAY"), NULL, NULL, 0L) ;
|
||||
// hdc = CreateIC(wxT("DISPLAY"), NULL, NULL, 0L) ;
|
||||
// if (hdc)
|
||||
// {
|
||||
/* check for mono-display */
|
||||
@@ -903,7 +903,7 @@ bool wxGauge::SetBackgroundColour(const wxColour& col)
|
||||
// hFont = (HFONT) SelectObject(hdc, pgauge->hFont);
|
||||
|
||||
/* build up a string to blit out--ie the meaning of life: "42%" */
|
||||
// wsprintf(ach, T("%3d%%"), (WORD)((DWORD)iPos * 100 / iRange));
|
||||
// wsprintf(ach, wxT("%3d%%"), (WORD)((DWORD)iPos * 100 / iRange));
|
||||
/* Win32s has no GetTextExtent(); let's try GetTextExtentPoint() instead */
|
||||
//#if defined(__WIN32__)
|
||||
// GetTextExtentPoint(hdc, ach, wGomerX = lstrlen(ach), &size);
|
||||
|
Reference in New Issue
Block a user