• R/O
  • HTTP
  • SSH
  • HTTPS

wtklite: Commit

A light-weight C++ object model framework Windows API Tool Kit


Commit MetaInfo

Revision87535c0f714bba7e810ac4e83fed3cefea46ba82 (tree)
Time2015-03-24 09:21:25
AuthorKeith Marshall <keithmarshall@user...>
CommiterKeith Marshall

Log Message

Add a missing return statement.

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
1+2015-03-24 Keith Marshall <keithmarshall@users.sourceforge.net>
2+
3+ Add a missing return statement.
4+
5+ * sashctrl.cpp (SashWindowMaker::OnMouseMove): Always return...
6+ (EXIT_SUCCESS): ...this.
7+
18 2014-04-02 Keith Marshall <keithmarshall@users.sourceforge.net>
29
310 Consistently use local headers for package build.
--- a/sashctrl.cpp
+++ b/sashctrl.cpp
@@ -21,7 +21,7 @@
2121 * derived classes, respectively.
2222 *
2323 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
24- * Copyright (C) 2012, MinGW.org Project.
24+ * Copyright (C) 2012, 2015, MinGW.org Project.
2525 *
2626 * ---------------------------------------------------------------------------
2727 *
@@ -151,6 +151,7 @@ namespace WTK
151151 */
152152 WindowObjectReference( GetParent( AppWindow ))->AdjustLayout();
153153 }
154+ return EXIT_SUCCESS;
154155 }
155156
156157 void SashWindowMaker::ValidateDisplacementFactor()
Show on old repository browser