@JonB
Thanks.. found out, that i needed to create a new Pointer in the Declaration of the .h File..
Means..
TGS_Widget_AssetList * _assetList;
Wasn´t enough...
I needed to do:
TGS_Widget_AssetList *_assetList = new TGS_Widget_AssetList(this);
or
auto *_assetList = new TGS_Widget_AssetList(this);
Now it works.. i will update my initial post here