Hi,
I have a simple UI application that has a single QApplication object. When i try to start it twice i get this error showing on the screen:
"Program Closed: Main CONE 28"
The first...
Type: Posts; User: cajagu; Keyword(s):
Hi,
I have a simple UI application that has a single QApplication object. When i try to start it twice i get this error showing on the screen:
"Program Closed: Main CONE 28"
The first...
Hi,
I've been trying to find out if there are any APIs which can simulate a condition where all the code is paged (i.e can be paged in or out in a WDP environment). Is there anything like this in...
Thanks Morten.
I do have a non-template overload of this function which takes TDesC but the compiler would always choose the template function which is why I wanted to provide a specialization for...
I have this template signature:
template<typename T>
TBool Foo(const T& aData)
{
}
The problem is providing template specializations for something which is already a template itself eg a...
Thanks for that, it is strange behaviour but I guess a work-around will have to be used.
Hi.
I have two functions:
(A):
TBool MyFunctionX(const TUint16 myInt, const TDesC16& aData)
{
RDebug::Printf("normal version of MyFunctionX()\n");
return EFalse;
}