[GB.FORM]

* BUG: DirChooser.ShowPreview used FDirChooser.GetPreview which does not
  exist. The correct symbol is FDirChooser.GetShowPreview.



git-svn-id: svn://localhost/gambas/trunk@5944 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Tobias Boege 2013-11-06 15:21:24 +00:00
parent 48d192b4c7
commit b1d1b3b0d7

View file

@ -248,7 +248,7 @@ End
Private Function ShowPreview_Read() As Boolean
Return frmChooser.GetPreview()
Return frmChooser.GetShowPreview()
End