Ignore:
Timestamp:
1999-10-18T12:43:31+13:00 (25 years ago)
Author:
cs025
Message:

Changes to eradicate Xmalloc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/text/mgquery.cpp

    r658 r711  
    2424/*
    2525   $Log$
     26   Revision 1.4  1999/10/17 23:43:28  cs025
     27   Changes to eradicate Xmalloc
     28
    2629   Revision 1.3  1999/10/12 04:12:46  cs025
    2730   Changes made to assist with eradication of GetEnv elsewhere in the
     
    187190    {
    188191      if (Stats[i].name)
    189         Xfree (Stats[i].name);
     192        delete Stats[i].name;
    190193      if (Stats[i].text)
    191         Xfree (Stats[i].text);
     194        delete Stats[i].text;
    192195    }
    193196      Xfree (Stats);
     
    486489  if (post_proc)
    487490    {
    488       Xfree (post_proc);
     491      delete post_proc;
    489492      post_proc = NULL;
    490493    }
     
    965968  if (OutputType == OUTPUT_TEXT || OutputType == OUTPUT_HILITE)
    966969    {
    967       Xfree (doc_sepstr);
    968       Xfree (para_sepstr);
    969       Xfree (para_start);
     970      delete doc_sepstr;
     971      delete para_sepstr;
     972      delete para_start;
    970973    }
    971974
     
    980983  de_escape_string (terminator);
    981984  fputs (terminator, out);
    982   Xfree (terminator);
     985  delete terminator;
    983986}
    984987
Note: See TracChangeset for help on using the changeset viewer.