Bwidget Source Code
Ticket Change Details
Not logged in
Overview

Artifact ID: 160845a9344897d9d3a9630886433e606cfcc72c50fd0275d666dd2a4fa8e026
Ticket: 378209fe023935a5308af7e6a345ab945bc36202
Unknown options error for ProgressDlg and PasswdDlg
User & Date: oehhar 2025-02-21 17:59:37
Changes

  1. icomment:
    To make this work, I have to remove all dialog options from those widgets:
    
    From (passwddlg.tcl, Line 16)
    <verbatim>
    namespace eval PasswdDlg {
        Widget::define PasswdDlg passwddlg Dialog LabelEntry
    
        Widget::bwinclude PasswdDlg Dialog :cmd \
    	    remove     {-image -bitmap -side -default -cancel -separator} \
    </verbatim>
    
    to
    
    <verbatim>
    namespace eval PasswdDlg {
        Widget::define PasswdDlg passwddlg Dialog LabelEntry
    
        Widget::bwinclude PasswdDlg Dialog :cmd \
    	    remove     {-image -bitmap -side -default -cancel -separator\
    	    -anchor -geometry ....
    	    } \
    </verbatim>
    
    This is IMHO not a solution.
    There is something else not working.
    
    Any proposal appreciated,
    Harald
    
  2. login: "oehhar"
  3. mimetype: "text/x-fossil-wiki"
  4. username: "oehhar"