diff --git a/src/filters/rclinfo b/src/filters/rclinfo index 05d99c21..1ccc2a72 100755 --- a/src/filters/rclinfo +++ b/src/filters/rclinfo @@ -12,6 +12,10 @@ import subprocess # Prototype for the html document we're returning. Info files are # normally ascii. Set no charset, and let it be provided by the # environment if necessary +# +# Some info source docs contain charset info like: +# @documentencoding ISO-2022-JP +# But this seems to be absent from outputs. htmltemplate = ''' diff --git a/src/qtgui/rclmain_w.cpp b/src/qtgui/rclmain_w.cpp index deabdcd2..9f0608c9 100644 --- a/src/qtgui/rclmain_w.cpp +++ b/src/qtgui/rclmain_w.cpp @@ -266,12 +266,8 @@ void RclMain::init() this, SLOT(startNativeViewer(Rcl::Doc))); connect(restable, SIGNAL(docPreviewClicked(int, Rcl::Doc, int)), this, SLOT(startPreview(int, Rcl::Doc, int))); - connect(restable, SIGNAL(docEditClicked(Rcl::Doc)), - this, SLOT(startNativeViewer(Rcl::Doc))); connect(restable, SIGNAL(docExpand(Rcl::Doc)), this, SLOT(docExpand(Rcl::Doc))); - connect(restable, SIGNAL(docEditClicked(Rcl::Doc)), - this, SLOT(startNativeViewer(Rcl::Doc))); connect(restable, SIGNAL(previewRequested(Rcl::Doc)), this, SLOT(startPreview(Rcl::Doc))); connect(restable, SIGNAL(editRequested(Rcl::Doc)),