Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Windows/Control/Window2.h')
-rwxr-xr-xWindows/Control/Window2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Windows/Control/Window2.h b/Windows/Control/Window2.h
index e7df5bb8..2d0e574d 100755
--- a/Windows/Control/Window2.h
+++ b/Windows/Control/Window2.h
@@ -32,12 +32,12 @@ public:
#endif
virtual LRESULT OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
- virtual bool OnCreate(CREATESTRUCT *createStruct) { return true; }
+ virtual bool OnCreate(CREATESTRUCT * /* createStruct */) { return true; }
// virtual LRESULT OnCommand(WPARAM wParam, LPARAM lParam);
virtual bool OnCommand(WPARAM wParam, LPARAM lParam, LRESULT &result);
virtual bool OnCommand(int code, int itemID, LPARAM lParam, LRESULT &result);
- virtual bool OnSize(WPARAM wParam, int xSize, int ySize) { return false; }
- virtual bool OnNotify(UINT controlID, LPNMHDR lParam, LRESULT &result) { return false; }
+ virtual bool OnSize(WPARAM /* wParam */, int /* xSize */, int /* ySize */) { return false; }
+ virtual bool OnNotify(UINT /* controlID */, LPNMHDR /* lParam */, LRESULT & /* result */) { return false; }
virtual void OnDestroy() { PostQuitMessage(0); }
virtual void OnClose() { Destroy(); }
/*