From 231237044baf1de5d3b1cacdebd9fe13c6ccf318 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 16 Apr 2000 19:34:22 +0000 Subject: [PATCH] Updated to current API. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7183 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/os2/filedlg.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/os2/filedlg.h b/include/wx/os2/filedlg.h index 134f26b77a..d1b17552db 100644 --- a/include/wx/os2/filedlg.h +++ b/include/wx/os2/filedlg.h @@ -39,8 +39,11 @@ public: inline wxString GetMessage() const { return m_message; } inline wxString GetPath() const { return m_path; } + inline void GetPaths(wxArrayString& a) { a.Empty(); a.Add(m_path); } inline wxString GetDirectory() const { return m_dir; } inline wxString GetFilename() const { return m_fileName; } + inline void GetFilenames(wxArrayString& a) { a.Empty(); + a.Add( m_fileName); } inline wxString GetWildcard() const { return m_wildCard; } inline long GetStyle() const { return m_dialogStyle; } inline int GetFilterIndex() const { return m_filterIndex ; }