X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=a6f6966b309bbce75e3fc4ee731c6986e0f97cdc;hb=1be55ea0c82499e7e007fc0c1c3184af97db3a71;hp=44a374615ad020e828659afa4313483e092d123f;hpb=718614da4e4b5f1c4b2250c1897995082c264194;p=ctsim.git diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index 44a3746..a6f6966 100644 --- a/tools/ctsimtext.cpp +++ b/tools/ctsimtext.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsimtext.cpp,v 1.10 2001/01/13 04:14:03 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.12 2001/01/13 05:02:20 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -45,7 +45,7 @@ extern "C" { // If linked to ctsimtext, but executed as another name, eg pjrec, then program will use that // linked name as name of function. -static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.10 2001/01/13 04:14:03 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.12 2001/01/13 05:02:20 kevin Exp $"; static const char* const s_szProgramName = "ctsimtext"; static const char* const s_szProgramName2 = "ctsimtext.exe"; @@ -105,8 +105,9 @@ ctsimtext_main (int argc, char * argv[]) int iReturn = 0; if (argc > 1 && (strcmp(argv[0], fileBasename (s_szProgramName)) == 0 || strcmp(argv[0], fileBasename (s_szProgramName2)) == 0)) { - argv = &argv[1]; + argv++; argc--; + } iReturn = processCommand (argc, argv); } else if (argc > 1){ iReturn = processCommand (argc, argv); @@ -275,19 +276,15 @@ main (int argc, char* argv[]) // Hack to fix linking problems when not linking with wxWindows and CTSim GUI routines - -#ifdef HAVE_WXWINDOWS -#include "../src/dlgezplot.h" - #ifdef MSVC unsigned long wxDialog::OnCtlColor(unsigned long a,unsigned long b,unsigned int c,unsigned int d,unsigned int e,long f) {return 0;} - -#else // not MSVC - #endif +#if 0 +#include "../src/dlgezplot.h" + EZPlotDialog::EZPlotDialog (wxWindow* parent) : wxDialog(), m_pEZPlotCtrl(NULL) {}