I think that
Qt Code:
  1. QVector<Okrag>
To copy to clipboard, switch view to plain text mode 
is probably not recognized as a data type that can be passed via signals/slots across threads. I think you need to use qRegisterMetaType.

You need to do a typedef

Qt Code:
  1. typedef QVector<Okrag> MyClass;
To copy to clipboard, switch view to plain text mode 

and then

Qt Code:
  1. qRegisterMetaType<MyClass>("MyClass");
To copy to clipboard, switch view to plain text mode