mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
Made filesystem viewer to show folders and subfolders right. Only bug remaining (supposed to be simple) is that after the first folder recursion the searching stops.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@826 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -25,6 +25,8 @@
|
||||
#include <wx/treectrl.h>
|
||||
#include <wx/gbsizer.h>
|
||||
#include <string>
|
||||
|
||||
#include "Filesystem.h"
|
||||
|
||||
#undef FILESYSTEM_VIEWER_STYLE
|
||||
#define FILESYSTEM_VIEWER_STYLE wxCAPTION | wxSYSTEM_MENU | wxDIALOG_NO_PARENT | wxCLOSE_BOX
|
||||
@ -132,6 +134,11 @@ class CFilesystemViewer : public wxDialog
|
||||
void OnExtractFile(wxCommandEvent& event);
|
||||
void OnReplaceFile(wxCommandEvent& event);
|
||||
void OnRenameFile(wxCommandEvent& event);
|
||||
|
||||
typedef std::vector<const DiscIO::SFileInfo *>::iterator fileIter;
|
||||
|
||||
void CreateDirectoryTree(wxTreeItemId& parent,fileIter& begin,
|
||||
fileIter& iterPos, char *directory);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user