-void wxDialog::Iconize(bool WXUNUSED(iconize))
-{
- // mac dialogs cannot be iconized
-}
-
-bool wxDialog::IsIconized() const
-{
- // mac dialogs cannot be iconized
- return FALSE;
-}
-
-void wxDialog::DoSetClientSize(int width, int height)
-{
- wxWindow::DoSetClientSize( width , height ) ;
-}
-
-void wxDialog::DoGetPosition(int *x, int *y) const
-{
- wxWindow::DoGetPosition( x , y ) ;
-}
-