From 876eaec62ad8109b87a3b4d70e46a2f25dada224 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Sun, 1 Jan 2006 15:44:46 +0000 Subject: [PATCH] eliminate GCC warning about initialization order svn path=/trunk/; revision=20517 --- reactos/subsys/system/explorer/explorer.dsp | 9 +++++++ .../system/explorer/shell/shellbrowser.h | 24 +++++++++---------- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/reactos/subsys/system/explorer/explorer.dsp b/reactos/subsys/system/explorer/explorer.dsp index 2f726de51d5..89a28ce57f9 100644 --- a/reactos/subsys/system/explorer/explorer.dsp +++ b/reactos/subsys/system/explorer/explorer.dsp @@ -407,6 +407,11 @@ SOURCE=".\explorer-jp.rc" # End Source File # Begin Source File +SOURCE=".\explorer-pl.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + SOURCE=".\explorer-pt.rc" # PROP Exclude_From_Build 1 # End Source File @@ -523,6 +528,10 @@ SOURCE=.\res\mdi.bmp # End Source File # Begin Source File +SOURCE=.\res\minimize.ico +# End Source File +# Begin Source File + SOURCE=.\res\network.ico # End Source File # Begin Source File diff --git a/reactos/subsys/system/explorer/shell/shellbrowser.h b/reactos/subsys/system/explorer/shell/shellbrowser.h index 3bdce69db7c..1de93693b6e 100644 --- a/reactos/subsys/system/explorer/shell/shellbrowser.h +++ b/reactos/subsys/system/explorer/shell/shellbrowser.h @@ -141,23 +141,23 @@ struct ShellBrowser : public IShellBrowserImpl void invalidate_cache(); protected: - HWND _hwnd; - HWND _left_hwnd; - WindowHandle& _right_hwnd; - ShellPathInfo& _create_info; - HIMAGELIST _himl; - HIMAGELIST _himl_old; + HWND _hwnd; + HWND _hwndFrame; + HWND _left_hwnd; + WindowHandle& _right_hwnd; + ShellPathInfo& _create_info; + HIMAGELIST _himl; + HIMAGELIST _himl_old; BrowserCallback* _callback; - HWND _hwndFrame; - ShellFolder _folder; + ShellFolder _folder; - IShellView* _pShellView; // current hosted shellview - TreeDropTarget* _pDropTarget; + IShellView* _pShellView; // current hosted shellview + TreeDropTarget* _pDropTarget; - HTREEITEM _last_sel; + HTREEITEM _last_sel; - Root _root; + Root _root; ShellDirectory* _cur_dir; CtxMenuInterfaces& _cm_ifs; -- 2.17.1