git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35471
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// this actually makes the widgets sample work so it's better than nothing.
if(style & wxGA_VERTICAL)
{
// this actually makes the widgets sample work so it's better than nothing.
if(style & wxGA_VERTICAL)
{
- wxLogDebug("wxGA_VERTICAL may not work correctly. See src/cocoa/gauge.mm");
+ wxLogDebug(wxT("wxGA_VERTICAL may not work correctly. See src/cocoa/gauge.mm"));
[m_cocoaNSView setBoundsRotation:-90.0];
}
[m_cocoaNSView setBoundsRotation:-90.0];
}
[GetNSTextField() setStringValue:wxNSStringWithWxString(label)];
NSRect oldFrameRect = [GetNSTextField() frame];
NSView *superview = [GetNSTextField() superview];
[GetNSTextField() setStringValue:wxNSStringWithWxString(label)];
NSRect oldFrameRect = [GetNSTextField() frame];
NSView *superview = [GetNSTextField() superview];
- wxLogTrace(wxTRACE_COCOA_Window_Size, "wxStaticText::SetLabel Old Position: (%d,%d)", GetPosition().x, GetPosition().y);
+ wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel Old Position: (%d,%d)"), GetPosition().x, GetPosition().y);
[GetNSTextField() sizeToFit];
NSRect newFrameRect = [GetNSTextField() frame];
// Ensure new size is an integer so GetSize returns valid data
[GetNSTextField() sizeToFit];
NSRect newFrameRect = [GetNSTextField() frame];
// Ensure new size is an integer so GetSize returns valid data
}
[GetNSTextField() setFrame:newFrameRect];
// New origin (wx coords) should always match old origin
}
[GetNSTextField() setFrame:newFrameRect];
// New origin (wx coords) should always match old origin
- wxLogTrace(wxTRACE_COCOA_Window_Size, "wxStaticText::SetLabel New Position: (%d,%d)", GetPosition().x, GetPosition().y);
+ wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel New Position: (%d,%d)"), GetPosition().x, GetPosition().y);
[[GetNSTextField() superview] setNeedsDisplayInRect:oldFrameRect];
[[GetNSTextField() superview] setNeedsDisplayInRect:newFrameRect];
[[GetNSTextField() superview] setNeedsDisplayInRect:oldFrameRect];
[[GetNSTextField() superview] setNeedsDisplayInRect:newFrameRect];