mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-01-10 19:21:10 -08:00
many small revisions (code, docu formatting); add class QPdfWriter;
This commit is contained in:
parent
7b03ef56fd
commit
b4f4aef416
52 changed files with 1531 additions and 1466 deletions
|
|
@ -17,10 +17,10 @@ DynObject::DynObject(QObject* par) : QObject(par), event_filters(false) {
|
|||
|
||||
int DynObject::qt_metacall(QMetaObject::Call c, int id, void** args) {
|
||||
if(QMetaObject::InvokeMetaMethod == c) {
|
||||
int slot_id = slot_ids.indexOf(id);
|
||||
if(slot_id != -1) {
|
||||
currentSender = signal_senders.at(slot_id);
|
||||
callConnectFun(slot_functions.at(slot_id), slot_types.at(slot_id), args); }}
|
||||
int index = slot_ids.indexOf(id);
|
||||
if(index != -1) {
|
||||
currentSender = signal_senders.at(index);
|
||||
callConnectFun(slot_functions.at(index), slot_types.at(index), args); }}
|
||||
return -1; }
|
||||
|
||||
bool DynObject::connect(QObject* from, const char* signal, DynObject* dyn, void* function) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue