OSDN Git Service

Add a missing return statement.
[mingw/wtklite.git] / ChangeLog
index 81b71a3..e641a70 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,83 @@
+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.
+
+       * wtkraise.cpp (wtklite.h): Use quoted include, not bracketed; we
+       cannot assume it will be in a default include path, at build time.
+
+2013-08-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       wtklite version 0.1.2 released.
+
+       * configure.ac (AC_INIT): Set version number; regenerate configure,
+       reconfigure, rebuild, and package for source-only release; publish it.
+
+       * All tracked files (r0.1.2): Tag assigned.
+
+2013-08-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Include README file in source distribution.
+
+       * Makefile.in (SRCDIST_FILES): Add README.
+
+2013-08-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add simplified support for changing window captions.
+
+       * wtklite.h (ChangeCaption): New static inline function; implement it.
+
+2013-08-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add facility for control of child window placement.
+
+       * wtkalign.h: New file; it declares the API for...
+       (AlignWindow): ...this new extern "C" function; declare it.
+       * wtkalign.c: New file; implement it.
+
+       * dlgproc.cpp (GenericDialogue::Dismiss) [WM_INITDIALOG]: Use it.
+
+       * configure.ac (AC_INIT): Bump version number to 0.1.1
+       (AC_PROG_CC): Add test for C compiler.
+
+       * Makefile.in (LIBWTK_OBJECTS): Add wtkalign.$OBJEXT
+       (CC, CFLAGS): Define for compilation of C code, according to...
+       (%.$OBJEXT: %.c): ...this new build rule; define it.
+       (SRCDIST_FILES): Add wtkalign.c and wtkalign.h
+       (install-headers): Add wtkalign.h
+
+2013-08-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Convert to one-shot C++ compilation with dependency tracking.
+
+       * Makefile.in (DEPFLAGS): Redefine; incorporate CPPFLAGS.
+       (hsashctl.$OBJEXT vsashctl.$OBJEXT): Use it in place of CPPFLAGS.
+       (%.$OBJEXT): Likewise; delete separate dependency tracking command.
+
+2013-08-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add facility for activation of a running application window.
+
+       * wtkdefs.h: New file; it defines...
+       (EXTERN_C, BEGIN_NAMESPACE, END_NAMESPACE): ...these new macros.
+
+       * wtkraise.cpp: New file; it implements...
+       (RaiseAppWindow): ...this new extern "C" function.
+
+       * wtklite.h (RaiseAppWindow): Declare it; it is designated by...
+       (EXTERN_C): ...this new macro, within WTK namespace demarcated by...
+       (BEGIN_NAMESPACE, END_NAMESPACE): ...this new macro pair.
+
+       * Makefile.in (LIBWTK_OBJECTS): Add wtkraise.$OBJEXT
+       (SRCDIST_FILES): Add wtkdefs.h and wtkraise.cpp
+       (install-headers): Add wtkdefs.h
+
 2013-08-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
        Do not track .orig files.