Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
fadeefff
Commit
fadeefff
authored
Sep 18, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Namechange dshist->sevhist
parent
e5d5aa17
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
wb/lib/wb/src/wb_c_sevhist.cpp
wb/lib/wb/src/wb_c_sevhist.cpp
+5
-5
xtt/lib/xtt/gtk/xtt_xnav_gtk.cpp
xtt/lib/xtt/gtk/xtt_xnav_gtk.cpp
+4
-4
xtt/lib/xtt/gtk/xtt_xnav_gtk.h
xtt/lib/xtt/gtk/xtt_xnav_gtk.h
+3
-3
xtt/lib/xtt/src/xtt_xnav.h
xtt/lib/xtt/src/xtt_xnav.h
+3
-3
No files found.
wb/lib/wb/src/wb_c_
ds
hist.cpp
→
wb/lib/wb/src/wb_c_
sev
hist.cpp
View file @
fadeefff
/*
* Proview $Id: wb_c_
dshist.cpp,v 1.1 2007-01-04 07:29:0
3 claes Exp $
* Proview $Id: wb_c_
sevhist.cpp,v 1.1 2008-09-18 15:01:1
3 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 Ds
Hist class. */
/* wb_c_
sevhist.c -- work bench methods of the Sev
Hist 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 Ds
Hist
If father of
SevHist has an "ActualValue" attribute, then make this Sev
Hist
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
(
Ds
Hist
)
=
{
pwr_dExport
pwr_BindMethods
(
Sev
Hist
)
=
{
pwr_BindMethod
(
PostCreate
),
pwr_BindMethod
(
PostMove
),
pwr_NullMethod
...
...
xtt/lib/xtt/gtk/xtt_xnav_gtk.cpp
View file @
fadeefff
/*
* Proview $Id: xtt_xnav_gtk.cpp,v 1.
7 2008-07-17 11:23:0
7 claes Exp $
* Proview $Id: xtt_xnav_gtk.cpp,v 1.
8 2008-09-18 14:56:5
7 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_
ds
hist_gtk.h"
#include "xtt_
sev
hist_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
);
}
Xtt
DsHist
*
XNavGtk
::
xttds
hist_new
(
char
*
name
,
pwr_tOid
*
oid
,
pwr_tOName
*
aname
,
Xtt
SevHist
*
XNavGtk
::
xttsev
hist_new
(
char
*
name
,
pwr_tOid
*
oid
,
pwr_tOName
*
aname
,
sevcli_tCtx
scctx
,
pwr_tStatus
*
sts
)
{
GtkWidget
*
w
;
return
new
Xtt
Ds
HistGtk
(
this
,
parent_wid
,
name
,
&
w
,
oid
,
aname
,
scctx
,
sts
);
return
new
Xtt
Sev
HistGtk
(
this
,
parent_wid
,
name
,
&
w
,
oid
,
aname
,
scctx
,
sts
);
}
XttFast
*
XNavGtk
::
xttfast_new
(
char
*
name
,
pwr_tAttrRef
*
objar
,
pwr_tStatus
*
sts
)
...
...
xtt/lib/xtt/gtk/xtt_xnav_gtk.h
View file @
fadeefff
/*
* Proview $Id: xtt_xnav_gtk.h,v 1.
5 2008-07-17 11:23:0
7 claes Exp $
* Proview $Id: xtt_xnav_gtk.h,v 1.
6 2008-09-18 14:56:5
7 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
);
Xtt
DsHist
*
xttds
hist_new
(
char
*
name
,
pwr_tOid
*
oid
,
pwr_tOName
*
aname
,
sevcli_tCtx
scctx
,
pwr_tStatus
*
sts
);
Xtt
SevHist
*
xttsev
hist_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
);
...
...
xtt/lib/xtt/src/xtt_xnav.h
View file @
fadeefff
/*
* Proview $Id: xtt_xnav.h,v 1.2
5 2008-07-17 11:23:07
claes Exp $
* Proview $Id: xtt_xnav.h,v 1.2
6 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
Xtt
Ds
Hist
;
class
Xtt
Sev
Hist
;
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
Xtt
DsHist
*
xttds
hist_new
(
char
*
name
,
pwr_tOid
*
oid
,
pwr_tOName
*
aname
,
virtual
Xtt
SevHist
*
xttsev
hist_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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment