Switch to unified view

a/src/qtgui/rclm_wins.cpp b/src/qtgui/rclm_wins.cpp
...
...
46
            return;
46
            return;
47
        }
47
        }
48
    connect(new QShortcut(quitKeySeq, asearchform), SIGNAL (activated()), 
48
    connect(new QShortcut(quitKeySeq, asearchform), SIGNAL (activated()), 
49
        this, SLOT (fileExit()));
49
        this, SLOT (fileExit()));
50
50
51
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
52
  connect(asearchform, 
53
      XSIGNAL(startSearch(STD_SHARED_PTR<Rcl::SearchData>, bool)), 
54
      this,XSLOT(startSearch(STD_SHARED_PTR<Rcl::SearchData>, bool)));
55
#else
51
    connect(asearchform, 
56
    connect(asearchform, 
52
        SIGNAL(startSearch(STD_SHARED_PTR<Rcl::SearchData>, bool)), 
57
        SIGNAL(startSearch(STD_SHARED_PTR<Rcl::SearchData>, bool)), 
53
        this, SLOT(startSearch(STD_SHARED_PTR<Rcl::SearchData>, bool)));
58
        this, SLOT(startSearch(STD_SHARED_PTR<Rcl::SearchData>, bool)));
59
#endif
54
    asearchform->show();
60
    asearchform->show();
55
    } else {
61
    } else {
56
    // Close and reopen, in hope that makes us visible...
62
    // Close and reopen, in hope that makes us visible...
57
    asearchform->close();
63
    asearchform->close();
58
    asearchform->show();
64
    asearchform->show();