Bwidget Source Code
Check-in [1119d44d62]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:[378209fe] Map the class to parent class.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | 378209fe-map-to-parent-class
Files: files | file ages | folders
SHA3-256: 1119d44d621a5e4349bbf140be044e51699edc4149767f981a9182dc56ae6551
User & Date: oehhar 2025-06-24 18:13:09.766
References
2025-06-24
18:45 Ticket [378209fe02] Unknown options error for ProgressDlg and PasswdDlg status still Open with 4 other changes artifact: 3691e22678 user: oehhar
Context
2025-06-24
18:13
[378209fe] Map the class to parent class. Closed-Leaf check-in: 1119d44d62 user: oehhar tags: 378209fe-map-to-parent-class
2025-06-23
11:09
Typos in comments from ticket [38813ebb]. Thanks, lindblad check-in: d1ba441b7e user: oehhar tags: bwidget
Changes
Unified Diff Ignore Whitespace Patch
Changes to passwddlg.tcl.
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
}

# -----------------------------------------------------------------------------
#  Command PasswdDlg::configure
# -----------------------------------------------------------------------------

proc PasswdDlg::configure { path args } {
    set res [Widget::configure "$path#PasswdDlg" $args]
}

# -----------------------------------------------------------------------------
#  Command PasswdDlg::cget
# -----------------------------------------------------------------------------

proc PasswdDlg::cget { path option } {
    return [Widget::cget "$path#PasswdDlg" $option]
}


# -----------------------------------------------------------------------------
#  Command PasswdDlg::_verifonlogin
# -----------------------------------------------------------------------------
proc PasswdDlg::_verifonlogin { path labpass } {







|







|







140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
}

# -----------------------------------------------------------------------------
#  Command PasswdDlg::configure
# -----------------------------------------------------------------------------

proc PasswdDlg::configure { path args } {
    set res [Widget::configure $path $args]
}

# -----------------------------------------------------------------------------
#  Command PasswdDlg::cget
# -----------------------------------------------------------------------------

proc PasswdDlg::cget { path option } {
    return [Widget::cget $path $option]
}


# -----------------------------------------------------------------------------
#  Command PasswdDlg::_verifonlogin
# -----------------------------------------------------------------------------
proc PasswdDlg::_verifonlogin { path labpass } {
Changes to progressdlg.tcl.
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
}


# ----------------------------------------------------------------------------
#  Command ProgressDlg::configure
# ----------------------------------------------------------------------------
proc ProgressDlg::configure { path args } {
    return [Widget::configure "$path#ProgressDlg" $args]
}


# ----------------------------------------------------------------------------
#  Command ProgressDlg::cget
# ----------------------------------------------------------------------------
proc ProgressDlg::cget { path option } {
    return [Widget::cget "$path#ProgressDlg" $option]
}







|







|

71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
}


# ----------------------------------------------------------------------------
#  Command ProgressDlg::configure
# ----------------------------------------------------------------------------
proc ProgressDlg::configure { path args } {
    return [Widget::configure $path $args]
}


# ----------------------------------------------------------------------------
#  Command ProgressDlg::cget
# ----------------------------------------------------------------------------
proc ProgressDlg::cget { path option } {
    return [Widget::cget $path $option]
}