added another size to the status bar display

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15067 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-04-09 23:55:38 +00:00
parent 08887820a9
commit 0545d965de

View File

@ -184,10 +184,12 @@ private:
if ( m_frameStatusBar )
{
wxString msg;
wxSize sizeCl = GetClientSize();
msg.Printf(_("pos=(%d, %d), size=%dx%d (client=%dx%d)"),
wxSize sizeAll = GetSize(),
sizeCl = GetClientSize();
msg.Printf(_("pos=(%d, %d), size=%dx%d or %dx%d (client=%dx%d)"),
pos.x, pos.y,
size.x, size.y,
sizeAll.x, sizeAll.y,
sizeCl.x, sizeCl.y);
SetStatusText(msg, 1);
}