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
78ee41cd
Commit
78ee41cd
authored
Sep 18, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow:CreateList, cancel backcall added
parent
e9f37cd6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
xtt/exe/rt_xtt/src/xtt_main.cpp
xtt/exe/rt_xtt/src/xtt_main.cpp
+2
-2
xtt/lib/ge/gtk/ge_gtk.cpp
xtt/lib/ge/gtk/ge_gtk.cpp
+2
-2
xtt/lib/xtt/gtk/xtt_clog_gtk.cpp
xtt/lib/xtt/gtk/xtt_clog_gtk.cpp
+2
-2
No files found.
xtt/exe/rt_xtt/src/xtt_main.cpp
View file @
78ee41cd
/*
* Proview $Id: xtt_main.cpp,v 1.
7 2008-04-18 08:47:58
claes Exp $
* Proview $Id: xtt_main.cpp,v 1.
8 2008-09-18 14:53:54
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -591,7 +591,7 @@ void Xtt::list_opplace()
}
else
// Select oplace from list
wow
->
CreateList
(
"Select Operator Place"
,
(
char
*
)
texts
,
opplace_selected_cb
,
this
);
wow
->
CreateList
(
"Select Operator Place"
,
(
char
*
)
texts
,
opplace_selected_cb
,
0
,
this
);
}
...
...
xtt/lib/ge/gtk/ge_gtk.cpp
View file @
78ee41cd
/*
* Proview $Id: ge_gtk.cpp,v 1.1
6 2008-05-13 13:59:02
claes Exp $
* Proview $Id: ge_gtk.cpp,v 1.1
7 2008-09-18 14:54:14
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -107,7 +107,7 @@ void GeGtk::create_list( char *title, char *texts,
void
(
action_cb
)(
void
*
,
char
*
),
void
*
ctx
)
{
CoWowGtk
wow
(
toplevel
);
wow
.
CreateList
(
title
,
texts
,
action_cb
,
ctx
);
wow
.
CreateList
(
title
,
texts
,
action_cb
,
0
,
ctx
);
}
void
GeGtk
::
subgraphs_new
()
...
...
xtt/lib/xtt/gtk/xtt_clog_gtk.cpp
View file @
78ee41cd
/*
* Proview $Id: xtt_clog_gtk.cpp,v 1.
2 2007-01-11 12:00:05
claes Exp $
* Proview $Id: xtt_clog_gtk.cpp,v 1.
3 2008-09-18 14:55:59
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -310,7 +310,7 @@ void CLogGtk::activate_select_file( GtkWidget *w, gpointer data)
strcat
(
str
[
i
],
clog
->
clognav
->
file_list
[
i
].
name
);
}
clog
->
wow
->
CreateList
(
"Select File"
,
(
char
*
)
str
,
file_selected_cb
,
clog
);
clog
->
wow
->
CreateList
(
"Select File"
,
(
char
*
)
str
,
file_selected_cb
,
0
,
clog
);
free
(
str
);
}
...
...
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