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
a8fb65b4
Commit
a8fb65b4
authored
May 29, 2019
by
Christoffer Ackelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Glow: Removed empty function.
parent
d3fce4b2
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
0 additions
and
27 deletions
+0
-27
xtt/lib/glow/src/glow_array.cpp
xtt/lib/glow/src/glow_array.cpp
+0
-7
xtt/lib/glow/src/glow_array.h
xtt/lib/glow/src/glow_array.h
+0
-1
xtt/lib/glow/src/glow_array_elem.h
xtt/lib/glow/src/glow_array_elem.h
+0
-1
xtt/lib/glow/src/glow_con.cpp
xtt/lib/glow/src/glow_con.cpp
+0
-5
xtt/lib/glow/src/glow_con.h
xtt/lib/glow/src/glow_con.h
+0
-1
xtt/lib/glow/src/glow_ctx.h
xtt/lib/glow/src/glow_ctx.h
+0
-10
xtt/lib/glow/src/glow_node.cpp
xtt/lib/glow/src/glow_node.cpp
+0
-1
xtt/lib/glow/src/glow_node.h
xtt/lib/glow/src/glow_node.h
+0
-1
No files found.
xtt/lib/glow/src/glow_array.cpp
View file @
a8fb65b4
...
...
@@ -1250,13 +1250,6 @@ void GlowArray::conpoint_refcon_redraw(void* node, int conpoint)
}
}
void
GlowArray
::
conpoint_refcon_erase
(
void
*
node
,
int
conpoint
)
{
for
(
int
i
=
0
;
i
<
a_size
;
i
++
)
{
a
[
i
]
->
conpoint_refcon_redraw
(
node
,
conpoint
);
}
}
void
GlowArray
::
set_inverse
(
int
on
)
{
for
(
int
i
=
0
;
i
<
a_size
;
i
++
)
{
...
...
xtt/lib/glow/src/glow_array.h
View file @
a8fb65b4
...
...
@@ -177,7 +177,6 @@ public:
void
move
(
double
delta_x
,
double
delta_y
,
int
grid
);
void
move_noerase
(
int
delta_x
,
int
delta_y
,
int
grid
);
void
conpoint_refcon_redraw
(
void
*
node
,
int
conpoint
);
void
conpoint_refcon_erase
(
void
*
node
,
int
conpoint
);
void
set_inverse
(
int
on
);
void
configure
();
int
brow_insert
(
...
...
xtt/lib/glow/src/glow_array_elem.h
View file @
a8fb65b4
...
...
@@ -167,7 +167,6 @@ public:
return
0
;
}
virtual
void
conpoint_refcon_redraw
(
void
*
node
,
int
conpoint
){}
virtual
void
conpoint_refcon_erase
(
void
*
node
,
int
conpoint
){}
virtual
void
remove_notify
(){}
virtual
void
set_user_data
(
void
*
data
){}
virtual
void
get_user_data
(
void
**
data
){}
...
...
xtt/lib/glow/src/glow_con.cpp
View file @
a8fb65b4
...
...
@@ -3222,11 +3222,6 @@ void GlowCon::move_ref(double x1, double y1, double x2, double y2)
}
}
void
GlowCon
::
conpoint_refcon_erase
(
void
*
node
,
int
conpoint
)
{
ctx
->
set_dirty
();
}
void
GlowCon
::
conpoint_refcon_redraw
(
void
*
node
,
int
conpoint
)
{
double
x1
,
y1
,
x2
,
y2
;
...
...
xtt/lib/glow/src/glow_con.h
View file @
a8fb65b4
...
...
@@ -259,7 +259,6 @@ public:
double
src_x
,
double
src_y
,
glow_eDirection
src_dir
);
void
move_ref
(
double
x1
,
double
y1
,
double
x2
,
double
y2
);
void
conpoint_refcon_redraw
(
void
*
node
,
int
conpoint
);
void
conpoint_refcon_erase
(
void
*
node
,
int
conpoint
);
void
remove_notify
();
int
ideal_line_cnt
;
int
current_line_cnt
;
...
...
xtt/lib/glow/src/glow_ctx.h
View file @
a8fb65b4
...
...
@@ -709,16 +709,6 @@ public:
a
.
conpoint_refcon_redraw
(
node
,
conpoint
);
}
//! Erase the reference connections for a specific node and connection point.
/*!
\param node Node.
\param conpoint Connection point number.
*/
void
conpoint_refcon_erase
(
void
*
node
,
int
conpoint
)
{
a
.
conpoint_refcon_erase
(
node
,
conpoint
);
}
//! Get object from name.
/*!
\param name Object name.
...
...
xtt/lib/glow/src/glow_node.cpp
View file @
a8fb65b4
...
...
@@ -383,7 +383,6 @@ void GlowNode::get_annotation(int num, char* text, int size)
void
GlowNode
::
conpoint_refcon_reconfig
(
int
conpoint
)
{
// ctx->conpoint_refcon_erase( this, conpoint);
refcon_cnt
[
conpoint
]
=
0
;
ctx
->
conpoint_refcon_redraw
(
this
,
conpoint
);
}
...
...
xtt/lib/glow/src/glow_node.h
View file @
a8fb65b4
...
...
@@ -264,7 +264,6 @@ public:
void
conpoint_refcon_reconfig
(
int
conpoint
);
void
conpoint_refcon_redraw
(
void
*
node
,
int
conpoint
){}
void
conpoint_refcon_erase
(
void
*
node
,
int
conpoint
){}
void
remove_notify
();
void
*
user_data
;
//!< User data.
...
...
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