# HG changeset patch # User pyon@macmini # Date 1319540575 -32400 # Node ID d10eafafe31fbb2d52f1d49393b9447fd2338de5 # Parent 868ccd73e2388c8fcbc37c618f520e8585a80aa8 dirview delete diff -r 868ccd73e238 -r d10eafafe31f makefile --- a/makefile Tue Oct 25 07:48:39 2011 +0900 +++ b/makefile Tue Oct 25 20:02:55 2011 +0900 @@ -1,6 +1,6 @@ # # Makefile for wxWidgets Application -# Last Change: 23-Oct-2011. +# Last Change: 25-Oct-2011. # by Takayuki Mutoh # @@ -103,14 +103,14 @@ -mkdir -p $(OBJDIR) $(CXX) -c $< -o $@ $(CPPFLAGS) -$(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h dirview.h +$(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h $(CXX) -c $< -o $@ $(CPPFLAGS) $(OBJDIR)/param.o: param.cpp param.h common.h main.h $(CXX) -c $< -o $@ $(CPPFLAGS) -$(OBJDIR)/dirview.o: dirview.cpp dirview.h common.h - $(CXX) -c $< -o $@ $(CPPFLAGS) +#$(OBJDIR)/dirview.o: dirview.cpp dirview.h common.h +# $(CXX) -c $< -o $@ $(CPPFLAGS) testtune: testtune.cpp $(CXX) $< -o $@ $(CPPFLAGS) $(LIBS) diff -r 868ccd73e238 -r d10eafafe31f src/main.cpp --- a/src/main.cpp Tue Oct 25 07:48:39 2011 +0900 +++ b/src/main.cpp Tue Oct 25 20:02:55 2011 +0900 @@ -1,5 +1,5 @@ // Filename : main.cpp -// Last Change: 22-Oct-2011. +// Last Change: 25-Oct-2011. // #include "common.h" @@ -102,7 +102,7 @@ wxDateTime now = wxDateTime::Now(); wxTextFile logfile; logfile.Open(wxT("log")); - logfile.AddLine( now.Format(wxT("%F %T ")) + msg ); + logfile.AddLine( now.Format(wxT("%Y-%m-%d %H:%M:%S ")) + msg ); logfile.Write(); logfile.Close(); }