cc_timer.h: fix threadname assignment

Parameter not really passed in some some conditions.
This commit is contained in:
2018-12-23 22:56:16 +01:00
parent 6237bfe07c
commit 8b9a268a0c

View File

@@ -131,7 +131,7 @@ class CComponentsTimer : public sigc::trackable
* @return * @return
* void * void
*/ */
void setThreadName(const std::string& n) { name = n; }; void setThreadName(const std::string& n) { name = tn = n; }
/**Provides a signal handler to receive any function or methode. /**Provides a signal handler to receive any function or methode.
* Use this in your class where ever you need time controled actions. * Use this in your class where ever you need time controled actions.