diff options
| author | Alexander Tkachev | 2016-07-04 13:05:15 +0600 | 
|---|---|---|
| committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 | 
| commit | 51a7232c73b1f6c04103716cae88b3781fd8ab33 (patch) | |
| tree | 7e5125e46c4662993dd89173f200661f02d38cbf /gui/remotebrowser.h | |
| parent | 73bb2e20afdd625998a1438adf29e5d9dbaa2929 (diff) | |
| download | scummvm-rg350-51a7232c73b1f6c04103716cae88b3781fd8ab33.tar.gz scummvm-rg350-51a7232c73b1f6c04103716cae88b3781fd8ab33.tar.bz2 scummvm-rg350-51a7232c73b1f6c04103716cae88b3781fd8ab33.zip | |
GUI: Fix RemoteBrowser Request handling
Init with NULL, ignore callbacks, and such.
Diffstat (limited to 'gui/remotebrowser.h')
| -rw-r--r-- | gui/remotebrowser.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/gui/remotebrowser.h b/gui/remotebrowser.h index ca1f9379cd..e13ee9db3d 100644 --- a/gui/remotebrowser.h +++ b/gui/remotebrowser.h @@ -39,8 +39,10 @@ class CommandSender;  class RemoteBrowserDialog : public Dialog {  public:  	RemoteBrowserDialog(const char *title); +	virtual ~RemoteBrowserDialog();  	virtual void open(); +	virtual void close();  	virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);  	virtual void handleTickle(); @@ -56,7 +58,7 @@ protected:  	bool _updateList;  	Networking::Request *_workingRequest; -	bool _ignoreCallback; //? +	bool _ignoreCallback;  	void updateListing();  	void goUp(); | 
