# HG changeset patch # User pyon@macmini # Date 1303120781 -32400 # Node ID c6099901f666723440f670c5f5e0bc2f4386d4d0 # Parent 3e756069f21584e0a4bff7a4d380f00e7ccb70be fix makefile ( for MinGW ). diff -r 3e756069f215 -r c6099901f666 makefile --- a/makefile Sat Apr 16 09:59:09 2011 +0900 +++ b/makefile Mon Apr 18 18:59:41 2011 +0900 @@ -1,6 +1,6 @@ # # Makefile for wxWidgets Application -# Last Change: 16-Apr-2011. +# Last Change: 18-Apr-2011. # by Takayuki Mutoh # @@ -85,7 +85,7 @@ # user include CPPFLAGS = $(WXCPPFLAGS) -I./include -I./img # user lib -LIBS = -static-libgcc $(WXLIBS) +LIBS = -static-libgcc -static-libstdc++ $(WXLIBS) ### Targets: ### @@ -128,7 +128,7 @@ $(EXECUTABLE): $(PROGNAME) ifdef COMSPEC - strip $(EXECUTABLE) + strip --strip-all $(EXECUTABLE) else -mkdir -p $(PROGNAME).app/Contents -mkdir -p $(PROGNAME).app/Contents/MacOS diff -r 3e756069f215 -r c6099901f666 src/preview.cpp --- a/src/preview.cpp Sat Apr 16 09:59:09 2011 +0900 +++ b/src/preview.cpp Mon Apr 18 18:59:41 2011 +0900 @@ -1,5 +1,5 @@ // Filename : preview.cpp -// Last Change: 13-Apr-2011. +// Last Change: 16-Apr-2011. // #include "preview.h" @@ -15,7 +15,7 @@ // constructor FramePreview::FramePreview( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style ) { - this->SetSize( 1400, 1000 ); + this->SetSize( 1200, 1000 ); this->SetBackgroundColour( wxColour(wxT("WHEAT")) ); wxBoxSizer* bSizer; @@ -134,4 +134,3 @@ return; } -