View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
ID | Project | Category | View Status | Date Submitted | Last Update |
0000015 | OMNeT++ | runtime / Tkenv | public | 2008-12-01 17:33 | 2008-12-02 14:39 |
|
Reporter | baumgart | |
Assigned To | andras | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | |
Platform | | OS | | OS Version | |
Product Version | 4.0b8 | |
Target Version | | Fixed in Version | 4.0rc1 | |
|
Summary | 0000015: Inspecting encapsulated message fails for messages with @customize(true) |
Description | When encapsulating a message within a customized message (generation gap pattern, @customize(true)) it is not displayed correctly in Tkenv.
When clicking on a message in Tkenv ("Inspect as object"), the encapsulated message is shown, but details like "creationTime" for the encapsulated message are missing. Furthermore if there is an additional encapsulated message in this message, it is neither shown.
This bug already showed up in omnetpp-3.4b2, omnetpp-3.3 is working fine). |
Tags | No tags attached. |
|
Attached Files | patch [^] (499 bytes) 2008-12-02 14:38 [Show Content] [Hide Content]Index: opp_msgc
===================================================================
--- opp_msgc (revision 10088)
+++ opp_msgc (working copy)
@@ -1613,7 +1613,7 @@
# ctor, dtor
$fieldcount = $#fieldlist+1;
- print CC "$msgdescclass\:\:$msgdescclass() : cClassDescriptor(\"$msgclass\", \"$msgbaseclass\")\n";
+ print CC "$msgdescclass\:\:$msgdescclass() : cClassDescriptor(\"$realmsgclass\", \"$msgbaseclass\")\n";
print CC "{\n";
print CC "}\n";
print CC "\n";
|
|