summaryrefslogtreecommitdiff
path: root/lib/utilities/symbol_viewer.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utilities/symbol_viewer.tcl')
-rw-r--r--lib/utilities/symbol_viewer.tcl13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/utilities/symbol_viewer.tcl b/lib/utilities/symbol_viewer.tcl
index c46b8ac..f67a8ac 100644
--- a/lib/utilities/symbol_viewer.tcl
+++ b/lib/utilities/symbol_viewer.tcl
@@ -1,10 +1,13 @@
#!/usr/bin/tclsh
-# Part of MCU 8051 IDE ( http://mcu8051ide.sf.net )
+# Part of MCU 8051 IDE ( http://http://www.moravia-microsystems.com/mcu8051ide )
############################################################################
# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 by Martin Ošmera #
# martin.osmera@gmail.com #
# #
+# Copyright (C) 2014 by Moravia Microsystems, s.r.o. #
+# martin.osmera@moravia-microsystems.com #
+# #
# This program is free software; you can redistribute it and#or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
@@ -34,15 +37,15 @@ set _SYMBOL_VIEWER_TCL _
class SymbolViewer {
## Class variables
# Int: Counter of object intances
- common count 0
+ public common count 0
# Font: Just normal font used in the table
- common normal_font [font create \
+ public common normal_font [font create \
-family $::DEFAULT_FIXED_FONT \
-size [expr {int(-14 * $::font_size_factor)}] \
-weight normal \
]
# Font: Bold font (the same size as $normal_font)
- common bold_font [font create \
+ public common bold_font [font create \
-family $::DEFAULT_FIXED_FONT \
-size [expr {int(-14 * $::font_size_factor)}] \
-weight bold \
@@ -52,7 +55,7 @@ class SymbolViewer {
set bold_font $normal_font
}
# Dialog configuration
- common config_list $::CONFIG(SYMBOL_VIEWER_CONFIG)
+ public common config_list $::CONFIG(SYMBOL_VIEWER_CONFIG)
## Private object variables
private variable obj_idx ;# Int: Current object number