changeset 20:d10eafafe31f v2.2dev

dirview delete
author pyon@macmini
date Tue, 25 Oct 2011 20:02:55 +0900
parents 868ccd73e238
children c540dc3eabe5
files makefile src/main.cpp
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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();
 }