diff --git a/src/qtgui/rclmain_w.cpp b/src/qtgui/rclmain_w.cpp index a89cb6ad..568d0237 100644 --- a/src/qtgui/rclmain_w.cpp +++ b/src/qtgui/rclmain_w.cpp @@ -274,8 +274,12 @@ void RclMain::init() 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)), this, SLOT(startNativeViewer(Rcl::Doc))); + connect(restable, SIGNAL(docSaveToFileClicked(Rcl::Doc)), + this, SLOT(saveDocToFile(Rcl::Doc))); connect(this, SIGNAL(docSourceChanged(RefCntr)), reslist, SLOT(setDocSource(RefCntr)));