CVS Commit by andreas: gtk fixes
require($_SERVER['DOCUMENT_ROOT']."/includes/top_config.php");
?>
CVS Commit by andreas: gtk fixes
Log Message:
-----------
gtk fixes
Modified Files:
--------------
pgadmin3/src/ui:
frmStatus.cpp (r1.32 -> r1.33)
dlgProperty.cpp (r1.80 -> r1.81)
Index: dlgProperty.cpp
===================================================================
RCS file: /projects/pgadmin3/src/ui/dlgProperty.cpp,v
retrieving revision 1.80
retrieving revision 1.81
diff -Lsrc/ui/dlgProperty.cpp -Lsrc/ui/dlgProperty.cpp -u -w -r1.80 -r1.81
--- src/ui/dlgProperty.cpp
+++ src/ui/dlgProperty.cpp
@@ -119,7 +119,7 @@
if (XRCID("unkStatusBar"))
{
statusBox = 0;
- statusBar = new wxStatusBar(this, -1);
+ statusBar = new wxStatusBar(this, -1, wxST_SIZEGRIP);
wxXmlResource::Get()->AttachUnknownControl(wxT("unkStatusBar"), statusBar);
}
else
Index: frmStatus.cpp
===================================================================
RCS file: /projects/pgadmin3/src/ui/frmStatus.cpp,v
retrieving revision 1.32
retrieving revision 1.33
diff -Lsrc/ui/frmStatus.cpp -Lsrc/ui/frmStatus.cpp -u -w -r1.32 -r1.33
--- src/ui/frmStatus.cpp
+++ src/ui/frmStatus.cpp
@@ -81,7 +81,7 @@
RestorePosition(-1, -1, 400, 240, 200, 150);
SetTitle(_title);
SetIcon(wxIcon(pgAdmin3_xpm));
- statusBar = new wxStatusBar(this, -1);
+ statusBar = new wxStatusBar(this, -1, wxST_SIZEGRIP);
wxXmlResource::Get()->AttachUnknownControl(wxT("unkStatusBar"), statusBar);
mainForm=form;
Home |
Main Index |
Thread Index