From 30b641919c57447b3f63f9db7170d933a6516869 Mon Sep 17 00:00:00 2001 From: Ron Lee Date: Tue, 14 Mar 2000 18:20:11 +0000 Subject: [PATCH] renamed proplist sample git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/proplist/Makefile.in | 14 +++----------- samples/proplist/makefile.b32 | 12 +++--------- samples/proplist/makefile.bcc | 11 +++-------- samples/proplist/makefile.dos | 13 +++---------- samples/proplist/makefile.g95 | 14 ++++---------- samples/proplist/makefile.vc | 13 +++---------- samples/proplist/makefile.wat | 10 +++------- samples/proplist/{test.cpp => proplist.cpp} | 6 +++--- samples/proplist/{test.def => proplist.def} | 2 +- samples/proplist/{test.h => proplist.h} | 4 ++-- samples/proplist/{test.rc => proplist.rc} | 0 11 files changed, 28 insertions(+), 71 deletions(-) rename samples/proplist/{test.cpp => proplist.cpp} (99%) rename samples/proplist/{test.def => proplist.def} (89%) rename samples/proplist/{test.h => proplist.h} (98%) rename samples/proplist/{test.rc => proplist.rc} (100%) diff --git a/samples/proplist/Makefile.in b/samples/proplist/Makefile.in index 113c8bacdf..d55ad0cd7c 100644 --- a/samples/proplist/Makefile.in +++ b/samples/proplist/Makefile.in @@ -1,19 +1,11 @@ -# -# File: makefile.unx -# Author: Julian Smart -# Created: 1998 -# Updated: -# Copyright: (c) 1998 Julian Smart -# -# "%W% %G%" -# -# Makefile for proplist example (UNIX). +# Purpose: makefile for proplist example (UNIX). +# Created: 2000-03-15 top_srcdir = @top_srcdir@/.. top_builddir = ../.. program_dir = samples/proplist -PROGRAM=test +PROGRAM=proplist OBJECTS=$(PROGRAM).o diff --git a/samples/proplist/makefile.b32 b/samples/proplist/makefile.b32 index 95ddc80d76..9e35c97943 100644 --- a/samples/proplist/makefile.b32 +++ b/samples/proplist/makefile.b32 @@ -1,15 +1,9 @@ -# -# File: makefile.b32 -# Author: Julian Smart -# Created: 1999 -# Updated: -# Copyright: -# -# Makefile : Builds sample for 32-bit BC++ +# Purpose: makefile for proplist example (BC++ 32bit) +# Created: 2000-03-15 WXDIR = $(WXWIN) -TARGET=test +TARGET=proplist OBJECTS = $(TARGET).obj !include $(WXDIR)\src\makeprog.b32 diff --git a/samples/proplist/makefile.bcc b/samples/proplist/makefile.bcc index 669f01905a..db25470c8c 100644 --- a/samples/proplist/makefile.bcc +++ b/samples/proplist/makefile.bcc @@ -1,10 +1,5 @@ -# -# File: makefile.bcc -# Author: Julian Smart -# Created: 1998 -# Updated: -# -# Builds a BC++ 16-bit sample +# Purpose: makefile for proplist example (BC++ 16bit) +# Created: 2000-03-15 !if "$(WXWIN)" == "" !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx @@ -12,7 +7,7 @@ WXDIR = $(WXWIN) -TARGET=test +TARGET=proplist OBJECTS=$(TARGET).obj !include $(WXDIR)\src\makeprog.bcc diff --git a/samples/proplist/makefile.dos b/samples/proplist/makefile.dos index 983ef2da8b..e580af0985 100644 --- a/samples/proplist/makefile.dos +++ b/samples/proplist/makefile.dos @@ -1,16 +1,9 @@ -# -# File: makefile.dos -# Author: Julian Smart -# Created: 1998 -# Updated: -# -# Makefile : Builds 16-bit sample, VC++ 1.5 -# Use FINAL=1 argument to nmake to build final version with no debugging -# info +# Purpose: makefile for proplist example (VC++ 1.5x) +# Created: 2000-03-15 WXDIR = $(WXWIN) -TARGET=test +TARGET=proplist OBJECTS=$(TARGET).obj !include $(WXDIR)\src\makeprog.msc diff --git a/samples/proplist/makefile.g95 b/samples/proplist/makefile.g95 index b4a920f047..5489c858c7 100644 --- a/samples/proplist/makefile.g95 +++ b/samples/proplist/makefile.g95 @@ -1,16 +1,10 @@ -# -# File: makefile.g95 -# Author: Julian Smart -# Created: 1999 -# Updated: -# Copyright: (c) Julian Smart, 1999 -# -# Makefile for wxWindows sample (Cygwin/Mingw32). +# Purpose: makefile for proplist example (Cygwin/Mingw32) +# Created: #03.01.00 WXDIR = ../.. -TARGET=test +TARGET=proplist OBJECTS = $(TARGET).o -include $(WXDIR)/src/makeprog.g95 +include $(WXDIR)\src\makeprog.g95 diff --git a/samples/proplist/makefile.vc b/samples/proplist/makefile.vc index 4ada748eda..4cb42439fc 100644 --- a/samples/proplist/makefile.vc +++ b/samples/proplist/makefile.vc @@ -1,17 +1,10 @@ -# -# File: makefile.vc -# Author: Julian Smart -# Created: 1999 -# Updated: -# Copyright: (c) Julian Smart -# -# Makefile : Builds sample (VC++, WIN32) -# Use FINAL=1 argument to nmake to build final version with no debug info. +# Purpose: makefile for proplist example (VC++ 32bit) +# Created: 2000-03-15 # Set WXDIR for your system WXDIR = $(WXWIN) -PROGRAM=test +PROGRAM=proplist OBJECTS = $(PROGRAM).obj !include $(WXDIR)\src\makeprog.vc diff --git a/samples/proplist/makefile.wat b/samples/proplist/makefile.wat index 81a83e42a9..b2a02cf03d 100644 --- a/samples/proplist/makefile.wat +++ b/samples/proplist/makefile.wat @@ -1,13 +1,9 @@ -# -# Makefile for WATCOM -# -# Created by Julian Smart, January 1999 -# -# +# Purpose: makefile for proplist example (Watcom) +# Created: 2000-03-15 WXDIR = $(%WXWIN) -PROGRAM = test +PROGRAM = proplist OBJECTS = $(PROGRAM).obj !include $(WXDIR)\src\makeprog.wat diff --git a/samples/proplist/test.cpp b/samples/proplist/proplist.cpp similarity index 99% rename from samples/proplist/test.cpp rename to samples/proplist/proplist.cpp index a63a1e0425..85bbfc9298 100644 --- a/samples/proplist/test.cpp +++ b/samples/proplist/proplist.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: test.cpp +// Name: proplist.cpp // Purpose: Property sheet test implementation // Author: Julian Smart // Modified by: @@ -10,7 +10,7 @@ ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ -#pragma implementation "test.h" +#pragma implementation "proplist.h" #endif // For compilers that support precompilation, includes "wx/wx.h". @@ -24,7 +24,7 @@ #include "wx/wx.h" #endif -#include "test.h" +#include "proplist.h" IMPLEMENT_APP(MyApp) diff --git a/samples/proplist/test.def b/samples/proplist/proplist.def similarity index 89% rename from samples/proplist/test.def rename to samples/proplist/proplist.def index d94e329083..b5cbde33a9 100644 --- a/samples/proplist/test.def +++ b/samples/proplist/proplist.def @@ -1,4 +1,4 @@ -NAME TEST +NAME Proplist DESCRIPTION 'wxProperty test' EXETYPE WINDOWS STUB 'WINSTUB.EXE' diff --git a/samples/proplist/test.h b/samples/proplist/proplist.h similarity index 98% rename from samples/proplist/test.h rename to samples/proplist/proplist.h index 5c0e34b0bd..356681fab9 100644 --- a/samples/proplist/test.h +++ b/samples/proplist/proplist.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: test.h +// Name: proplist.h // Purpose: Property sheet sample // Author: Julian Smart // Modified by: @@ -10,7 +10,7 @@ ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ -#pragma interface "test.h" +#pragma interface "proplist.h" #endif #ifndef _PROPTEST_H_ diff --git a/samples/proplist/test.rc b/samples/proplist/proplist.rc similarity index 100% rename from samples/proplist/test.rc rename to samples/proplist/proplist.rc -- 2.50.0