|
a/src/qtgui/rclzg.cpp |
|
b/src/qtgui/rclzg.cpp |
|
... |
|
... |
18 |
#ifdef USE_ZEITGEIST
|
18 |
#ifdef USE_ZEITGEIST
|
19 |
#include "autoconfig.h"
|
19 |
#include "autoconfig.h"
|
20 |
|
20 |
|
21 |
#include "rclzg.h"
|
21 |
#include "rclzg.h"
|
22 |
|
22 |
|
23 |
#include "debuglog.h"
|
23 |
#include "log.h"
|
24 |
#include "pathut.h"
|
24 |
#include "pathut.h"
|
25 |
|
25 |
|
26 |
#include <QString>
|
26 |
#include <QString>
|
27 |
#include <QDateTime>
|
27 |
#include <QDateTime>
|
28 |
#include <QtZeitgeist/QtZeitgeist>
|
28 |
#include <QtZeitgeist/QtZeitgeist>
|
|
... |
|
... |
76 |
|
76 |
|
77 |
|
77 |
|
78 |
QtZeitgeist::DataModel::EventList events;
|
78 |
QtZeitgeist::DataModel::EventList events;
|
79 |
events.push_back(event);
|
79 |
events.push_back(event);
|
80 |
|
80 |
|
81 |
LOGDEB(("zg_send_event, sending for %s %s\n",
|
81 |
LOGDEB("zg_send_event, sending for " << (doc.mimetype) << " " << (doc.url) << "\n" );
|
82 |
doc.mimetype.c_str(), doc.url.c_str()));
|
|
|
83 |
zglogger.insertEvents(events);
|
82 |
zglogger.insertEvents(events);
|
84 |
}
|
83 |
}
|
85 |
|
84 |
|
86 |
#endif
|
85 |
#endif
|
|
|
86 |
|