Changeset 2227


Ignore:
Timestamp:
Apr 26, 2011, 10:18:18 AM (13 years ago)
Author:
gah
Message:
 
Location:
branches/blt4/gui
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/gui/configure.in

    r2226 r2227  
    22AC_INIT([RapptureGUI],[1.1],[rappture@nanohub.org])
    33AC_CONFIG_AUX_DIR(cf)
     4
    45#------------------------------------------------------------------------
    56# Handle the --prefix=... option
     
    135136#
    136137# -----------------------------------------------------------------------
     138
    137139AC_MSG_CHECKING([for tkConfig.sh])
    138140tk_config_sh=""
  • branches/blt4/gui/src/Makefile.in

    r2208 r2227  
    4747
    4848LIBS            = \
    49                 -L../../src/core -lrappture \
    5049                -L$(libdir) $(TCL_LIB_SPEC) $(TK_LIB_SPEC) $(TK_XLIBSW) -lm
    5150
  • branches/blt4/gui/src/RpCanvPlacard.c

    r2170 r2227  
    10831083{
    10841084    PlacardItem *plPtr = (PlacardItem *) itemPtr;
     1085#ifdef notdef
    10851086    Tk_Window canvasWin = Tk_CanvasTkwin(canvas);
    1086 
     1087#endif
    10871088    int x, y;
    10881089    double xpos;
     
    11191120        Tcl_AppendResult(interp, buffer, " translate\n", (char *) NULL);
    11201121      }
    1121 /****
     1122#ifdef notdef
    11221123      Tk_PostscriptImage(plPtr->imageLeft, interp, canvasWin,
    11231124                         ((TkCanvas*)canvas)->psInfo, 0, 0,
    11241125                         plPtr->imageLeftW, plPtr->imageLeftH, prepass);
    1125 ****/
    1126 
     1126#endif
    11271127      if ( !prepass ) {
    11281128        /*
  • branches/blt4/gui/src/RpDiffview.c

    r2170 r2227  
    23962396    Tcl_HashEntry *entryPtr;
    23972397    Tcl_DString buffer;
    2398     DiffviewSubseq *K, *newK, newCandidate; int Kmax; int Klen;
     2398    DiffviewSubseq *K, *newK, newCandidate;
     2399    int Kmax; int Klen;
    23992400    Tcl_Obj *listPtr, **objv;
    24002401    int i, j, candidateIdx, subseqLen, longestMatch;
     
    24022403    int len, created, o, objc, index1, *lcsIndex1, index2, *lcsIndex2;
    24032404    char *key;
     2405
     2406    newCandidate.index1 = -1;           /* Suppress compiler warning. */
     2407    newCandidate.index2 = -1;
     2408    newCandidate.next = -1;
    24042409
    24052410    /*
Note: See TracChangeset for help on using the changeset viewer.