Added wxTimePickerCtrl page to the widgets sample.

Even if this page is pretty trivial, add it for consistency with
wxDatePickerCtrl.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70069 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-12-20 21:27:06 +00:00
parent 54450d0907
commit 59a2c19914
14 changed files with 484 additions and 1 deletions

View File

@@ -79,6 +79,7 @@ WIDGETS_OBJECTS = \
widgets_static.o \
widgets_statbmp.o \
widgets_textctrl.o \
widgets_timepick.o \
widgets_toggle.o \
widgets_widgets.o
@@ -195,6 +196,9 @@ widgets_statbmp.o: ./statbmp.cpp
widgets_textctrl.o: ./textctrl.cpp
$(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
widgets_timepick.o: ./timepick.cpp
$(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
widgets_toggle.o: ./toggle.cpp
$(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<