PDA

View Full Version : Unknown Thread in my app is exiting



donglebob
9th December 2008, 07:50
Hi,

every time I debugged my QT app in Visual Studio I saw that during debugging threads exited itself without any reason.

I used Process Explorer to identify these threads:
ole32.dll!StringFromGUID2
RPCRT4.dll!I_RpcBCacheFree

Can you tell me which part of my QT app needs them? And why are they exiting itself without my permission?



Edit:
Made a miskate ... I think these are functional calls in the call stack of each thread.
Maybe someone knows them??



Thx!

donglebob
9th December 2008, 09:31
I found the line while debugging.
These two threads are created when I dynamically create an instance of QLineEdit!

:confused::confused::confused:

It creates them in its own ctor =>
d->init(QString());

Edit:
It happens in setMouseTracking(true)