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
c5f2f09f
Commit
c5f2f09f
authored
Jul 04, 2007
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Size of subgraph name increased from 32 to 80 chars
parent
58517d13
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
xtt/lib/glow/src/glow_array.cpp
xtt/lib/glow/src/glow_array.cpp
+4
-4
xtt/lib/glow/src/glow_node.h
xtt/lib/glow/src/glow_node.h
+2
-2
xtt/lib/glow/src/glow_nodeclass.h
xtt/lib/glow/src/glow_nodeclass.h
+2
-2
No files found.
xtt/lib/glow/src/glow_array.cpp
View file @
c5f2f09f
/*
* Proview $Id: glow_array.cpp,v 1.
9 2007-01-04 07:57:38
claes Exp $
* Proview $Id: glow_array.cpp,v 1.
10 2007-07-04 13:32:26
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -780,7 +780,7 @@ void GlowArray::open( GrowCtx *ctx, ifstream& fp)
}
case
glow_eSave_NodeClass
:
{
char
name
[
32
];
char
name
[
80
];
GlowArrayElem
*
element
;
GlowNodeClass
*
n
=
new
GlowNodeClass
(
ctx
,
""
);
...
...
@@ -796,7 +796,7 @@ void GlowArray::open( GrowCtx *ctx, ifstream& fp)
}
case
glow_eSave_ConClass
:
{
char
name
[
32
];
char
name
[
80
];
GlowArrayElem
*
element
;
GlowConClass
*
n
=
new
GlowConClass
(
ctx
,
""
,
...
...
@@ -1124,7 +1124,7 @@ int GlowArray::find( GlowArrayElem *element)
int
GlowArray
::
find_by_name
(
char
*
name
,
GlowArrayElem
**
element
)
{
int
i
;
char
object_name
[
32
];
char
object_name
[
80
];
for
(
i
=
0
;
i
<
a_size
;
i
++
)
{
...
...
xtt/lib/glow/src/glow_node.h
View file @
c5f2f09f
/*
* Proview $Id: glow_node.h,v 1.
4 2007-01-04 07:57:39
claes Exp $
* Proview $Id: glow_node.h,v 1.
5 2007-07-04 13:28:52
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -129,7 +129,7 @@ class GlowNode : public GlowArrayElem {
GlowNodeClass
*
nc_root
;
//!< Root nodeclass, i.e. the nodeclass of the first page.
GlowPoint
pos
;
GlowPoint
stored_pos
;
char
n_name
[
32
];
//!< Name of the object.
char
n_name
[
80
];
//!< Name of the object.
int
highlight
;
//!< The object is drawn with highlight color.
int
inverse
;
char
*
annotv
[
10
];
//!< Array with pointers to annotation texts.
...
...
xtt/lib/glow/src/glow_nodeclass.h
View file @
c5f2f09f
/*
* Proview $Id: glow_nodeclass.h,v 1.
5 2007-01-04 07:57:39
claes Exp $
* Proview $Id: glow_nodeclass.h,v 1.
6 2007-07-04 13:28:52
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -371,7 +371,7 @@ class GlowNodeClass : public GlowArrayElem {
GrowCtx
*
ctx
;
//!< Glow context.
GlowArray
a
;
//!< Array of nodeclass elements.
char
nc_name
[
32
];
//!< Name of nodeclass.
char
nc_name
[
80
];
//!< Name of nodeclass.
glow_eNodeGroup
group
;
//!< Group the nodeclass belongs to.
char
*
dynamic
;
//!< Dynamic code.
int
dynamicsize
;
//!< Size of dynamic code.
...
...
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