forked from mia/Aegisub
c10e9e3a5b
Don't display error messages and try other providers when the user cancels loading a file. Remove files from the MRU lists if they can't be found. Closes #717. Originally committed to SVN as r4717.
15 lines
429 B
C++
15 lines
429 B
C++
#ifndef AGI_PRE
|
|
#include <string>
|
|
|
|
#include <wx/colour.h>
|
|
#include <wx/arrstr.h>
|
|
#include <wx/string.h>
|
|
#endif
|
|
|
|
#include <libaegisub/colour.h>
|
|
|
|
#define STD_STR(x) std::string((x).utf8_str())
|
|
|
|
inline wxColour lagi_wxColour(const agi::Colour &colour) { return wxColour(colour); }
|
|
inline wxString lagi_wxString(const std::string &str) { return wxString(str.c_str(), wxConvUTF8); }
|
|
wxArrayString lagi_MRU_wxAS(const wxString &list);
|