Displaying 1 result from an estimated 1 matches for "ttkradiobutton".
Did you mean:
tkradiobutton
2012 Dec 15
0
R CMD INSTALL warnings with conflicting imports
...:
> 1: replacing previous import ?tclvalue? when loading ?Rcmdr?
> 2: replacing previous import ?tkfocus? when loading ?Rcmdr?
> 3: replacing previous import ?ttkentry? when loading ?Rcmdr?
> 4: replacing previous import ?ttkframe? when loading ?Rcmdr?
> 5: replacing previous import ?ttkradiobutton? when loading ?Rcmdr?
> 6: replacing previous import ?ttkscrollbar? when loading ?Rcmdr?
The solution we found is to use importFrom(tcltk, ...) to only import
tcltk fonctions that do not conflict with those exported by Rcmdr. This
works, but is slightly more painful than the old way, since a ty...