Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
asn1-value-editor
Commits
f5e4e410
Commit
f5e4e410
authored
Jun 13, 2018
by
Maxime Perrotin
Browse files
Fix import symbol names for opengoede simulator
parent
ac6f4bb3
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
f5e4e410
...
...
@@ -34,6 +34,7 @@ LICENSE: LGPL - see LICENSE file
CHANGELOG:
1.
6.3 - Fix PI import names in opengeode 2.x.x simulator
1.
6.2 - Use mono prefix to call msc2py.exe
1.
6.1 - Fix messages that did not appear on the GUI if received too fast
1.
6.0 - Fix autoscrolling in MSC streaming scenes
...
...
asn1_value_editor/asn1_value_editor.py
View file @
f5e4e410
...
...
@@ -16,7 +16,7 @@
__author__
=
"Maxime Perrotin"
__license__
=
"LGPLv3"
__version__
=
"1.6.
2
"
__version__
=
"1.6.
3
"
__url__
=
"http://taste.tuxfamily.org"
import
sys
...
...
asn1_value_editor/sdlHandler.py
View file @
f5e4e410
...
...
@@ -610,8 +610,8 @@ class sdlHandler(QObject):
''' Send a TC by calling directly the function in the dll '''
# Save internal state, send tc, restore state
getattr
(
self
.
dll
,
"_save_context"
)()
getattr
(
self
.
dll
,
'{}_{}'
.
format
(
self
.
proc
.
processName
,
name
))(
arg_ctypes_ptr
)
getattr
(
self
.
dll
,
'{}_
PI_
{}'
.
format
(
self
.
proc
.
processName
,
name
.
lower
()
))(
arg_ctypes_ptr
)
new_hash
=
self
.
on_event
()
getattr
(
self
.
dll
,
"_restore_context"
)()
return
new_hash
...
...
@@ -970,8 +970,8 @@ class sdlHandler(QObject):
if
col
:
row
+=
1
col
=
(
col
+
1
)
%
2
tc
=
getattr
(
self
.
dll
,
'{}_{}'
.
format
(
self
.
proc
.
processName
,
name
))
tc
=
getattr
(
self
.
dll
,
'{}_
PI_
{}'
.
format
(
self
.
proc
.
processName
,
name
.
lower
()
))
button
.
pressed
.
connect
(
partial
(
self
.
send_tc
,
name
,
tc
))
def
set_paramless_tm
(
self
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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