Dynad
Member
|
Gui textline to string
Hi,
How can u convert a textline to a string?
I tried to use this:
Code:
Str test;
void addMessage(TextLine *t)
{
test = S+(*name);
}
But the compiler tells me there is not conversion available.
Thnx,
~Dynad
There is always evil somewhere, you just have to look for it properly.
|
|
02-01-2010 07:53 PM |
|
Chris
Member
|
RE: Gui textline to string
Str test;
TextLine t;
test=t();
(unchecked)
|
|
02-01-2010 07:57 PM |
|
Masterxilo
Member
|
RE: Gui textline to string
Or for your function:
Code:
Str test;
void addMessage(TextLine *t)
{
test = S+(*name)();
}
System: Windows 7 Ultimate 64 bit, Q6600 2.4 GHZ, 4GB RAM, nVidia GeForce 260 GTX 896 MB DDR3
Visit my site: hurricane-eye.webs.com
And read my blog: hurricane-eyeent.blogspot.com
|
|
02-01-2010 09:27 PM |
|