a/src/qtgui/ssearch_w.cpp b/src/qtgui/ssearch_w.cpp
...
...
16
 */
16
 */
17
#include "autoconfig.h"
17
#include "autoconfig.h"
18
18
19
#include <sstream>
19
#include <sstream>
20
#include <set>
20
#include <set>
21
#include MEMORY_INCLUDE
21
#include <memory>
22
22
23
#include <qapplication.h>
23
#include <qapplication.h>
24
#include <qinputdialog.h>
24
#include <qinputdialog.h>
25
#include <qvariant.h>
25
#include <qvariant.h>
26
#include <qpushbutton.h>
26
#include <qpushbutton.h>
...
...
307
307
308
    xml << "</SD>\n";
308
    xml << "</SD>\n";
309
    m_xml = xml.str();
309
    m_xml = xml.str();
310
    LOGDEB("SSearch::startSimpleSearch:xml:["  << (m_xml) << "]\n" );
310
    LOGDEB("SSearch::startSimpleSearch:xml:["  << (m_xml) << "]\n" );
311
311
312
    STD_SHARED_PTR<Rcl::SearchData> rsdata(sdata);
312
    std::shared_ptr<Rcl::SearchData> rsdata(sdata);
313
    emit startSearch(rsdata, true);
313
    emit startSearch(rsdata, true);
314
    return true;
314
    return true;
315
}
315
}
316
316
317
bool SSearch::fromXML(const SSearchDef& fxml)
317
bool SSearch::fromXML(const SSearchDef& fxml)