Commit fadeefff authored by claes's avatar claes

Namechange dshist->sevhist

parent e5d5aa17
/*
* Proview $Id: wb_c_dshist.cpp,v 1.1 2007-01-04 07:29:03 claes Exp $
* Proview $Id: wb_c_sevhist.cpp,v 1.1 2008-09-18 15:01:13 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -17,7 +17,7 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**/
/* wb_c_dshist.c -- work bench methods of the DsHist class. */
/* wb_c_sevhist.c -- work bench methods of the SevHist class. */
#include <string.h>
#include "wb_pwrs.h"
......@@ -43,7 +43,7 @@ static pwr_tStatus PostCreate (
pwr_sAttrRef Attribute;
/*
If father of DsHist has an "ActualValue" attribute, then make this DsHist
If father of SevHist has an "ActualValue" attribute, then make this SevHist
refer to this attribute.
*/
......@@ -81,7 +81,7 @@ static pwr_tStatus PostMove (
pwr_sAttrRef Attribute;
/*
If father of ASup has an "ActualValue" attribute, then make this ASup
If father of SevHist has an "ActualValue" attribute, then make this ASup
refer to this attribute.
*/
......@@ -107,7 +107,7 @@ static pwr_tStatus PostMove (
Every method to be exported to the workbench should be registred here.
\*----------------------------------------------------------------------------*/
pwr_dExport pwr_BindMethods(DsHist) = {
pwr_dExport pwr_BindMethods(SevHist) = {
pwr_BindMethod(PostCreate),
pwr_BindMethod(PostMove),
pwr_NullMethod
......
/*
* Proview $Id: xtt_xnav_gtk.cpp,v 1.7 2008-07-17 11:23:07 claes Exp $
* Proview $Id: xtt_xnav_gtk.cpp,v 1.8 2008-09-18 14:56:57 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -60,7 +60,7 @@ typedef void *Widget;
#include "xtt_ge_gtk.h"
#include "xtt_block_gtk.h"
#include "xtt_trend_gtk.h"
#include "xtt_dshist_gtk.h"
#include "xtt_sevhist_gtk.h"
#include "xtt_fast_gtk.h"
#include "xtt_xattone_gtk.h"
#include "xtt_clog_gtk.h"
......@@ -218,12 +218,12 @@ XttTrend *XNavGtk::xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *
return new XttTrendGtk( this, parent_wid, name, &w, objar, plotgroup, sts);
}
XttDsHist *XNavGtk::xttdshist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
XttSevHist *XNavGtk::xttsevhist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
sevcli_tCtx scctx, pwr_tStatus *sts)
{
GtkWidget *w;
return new XttDsHistGtk( this, parent_wid, name, &w, oid, aname, scctx, sts);
return new XttSevHistGtk( this, parent_wid, name, &w, oid, aname, scctx, sts);
}
XttFast *XNavGtk::xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts)
......
/*
* Proview $Id: xtt_xnav_gtk.h,v 1.5 2008-07-17 11:23:07 claes Exp $
* Proview $Id: xtt_xnav_gtk.h,v 1.6 2008-09-18 14:56:57 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -58,8 +58,8 @@ class XNavGtk : public XNav {
Op *op_new( char *opplace, pwr_tStatus *sts);
XttTrend *xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *plotgroup,
pwr_tStatus *sts);
XttDsHist *xttdshist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
sevcli_tCtx scctx, pwr_tStatus *sts);
XttSevHist *xttsevhist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
sevcli_tCtx scctx, pwr_tStatus *sts);
XttFast *xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts);
XAttOne *xattone_new( pwr_tAttrRef *objar, char *title, unsigned int priv,
pwr_tStatus *sts);
......
/*
* Proview $Id: xtt_xnav.h,v 1.25 2008-07-17 11:23:07 claes Exp $
* Proview $Id: xtt_xnav.h,v 1.26 2008-09-18 14:58:26 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -91,7 +91,7 @@ class XAtt;
class XCrr;
class Block;
class XttTrend;
class XttDsHist;
class XttSevHist;
class XttFast;
class XAttOne;
class GeCurve;
......@@ -340,7 +340,7 @@ class XNav {
virtual Op *op_new( char *opplace, pwr_tStatus *sts) {return 0;}
virtual XttTrend *xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *plotgroup,
pwr_tStatus *sts) {return 0;}
virtual XttDsHist *xttdshist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
virtual XttSevHist *xttsevhist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
sevcli_tCtx scctx, pwr_tStatus *sts) {return 0;}
virtual XttFast *xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts) {return 0;}
virtual XAttOne *xattone_new( pwr_tAttrRef *objar, char *title, unsigned int priv,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment