forked from mirrors/0ad
3d26549032
This was SVN commit r3802.
10 lines
233 B
C++
10 lines
233 B
C++
class FileConverter : public wxFrame
|
|
{
|
|
public:
|
|
FileConverter(wxWindow* parent);
|
|
virtual bool Show(bool);
|
|
|
|
private:
|
|
bool m_Transient; // if true, the window won't be shown (since it's assumed to have been destroyed immediately)
|
|
};
|