OSDN Git Service

Add a missing return statement. master
authorKeith Marshall <keithmarshall@users.sourceforge.net>
Tue, 24 Mar 2015 00:21:25 +0000 (00:21 +0000)
committerKeith Marshall <keithmarshall@users.sourceforge.net>
Tue, 24 Mar 2015 00:21:25 +0000 (00:21 +0000)
ChangeLog
sashctrl.cpp

index 56d43b3..e641a70 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2015-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add a missing return statement.
+
+       * sashctrl.cpp (SashWindowMaker::OnMouseMove): Always return...
+       (EXIT_SUCCESS): ...this.
+
 2014-04-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
        Consistently use local headers for package build.
index 8c55958..8d33c6e 100644 (file)
@@ -21,7 +21,7 @@
  * derived classes, respectively.
  *
  * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
- * Copyright (C) 2012, MinGW.org Project.
+ * Copyright (C) 2012, 2015, MinGW.org Project.
  *
  * ---------------------------------------------------------------------------
  *
@@ -151,6 +151,7 @@ namespace WTK
        */
       WindowObjectReference( GetParent( AppWindow ))->AdjustLayout();
     }
+    return EXIT_SUCCESS;
   }
 
   void SashWindowMaker::ValidateDisplacementFactor()