Congratulations Sara!
Type: Posts; User: savaj; Keyword(s):
Congratulations Sara!
Usually those kind of errors will occurs when emulator reference is missing from project. Select the platform node and configure the emulator instance.
Since you are using CAknViewAppUi class, you can also directly use macro iAvkonViewAppUi (Defined in AknViewAppUi.h) to access pointer to base AppUi class. Then just cast it to your own type.
Debug and check what exactly you are passing to
iRichTextEditor->SetRect(aRect); in ConstructL and SizeChanged method.
Basically RAttributeArray (Check OnStartElementL method) is a array of RAttribute which contain element name(here "time") and its value (here "11/10/2012 8:07:46 am"). In case you have more then one...
Check if increasing stack/heap size will fix this issue. Try to add following lines in your .mmp file and then test app.
EPOCSTACKSIZE 0x14000
EPOCHEAPSIZE 0x020000 0x800000
Ideally it should work, assuming your resource "R_EMPTY_TOOLBAR" is really empty. You can also try to create toolbar from resource.
Congratulations Pooja!! :)
Congratulations to all winners!
Congratulations Pavan!
Just add header file (e32std.h) in your .cpp file and library (euser.lib) in .pro file. Check Using Qt and Symbian C++ Together.
Congratulations Avnee. :)
Congrats rahul !!!
Compiler is right... You are redefining constructor of MainWindow. One is first function of your file and another is last function. Remove one of them.
What about path to "traduction.qm"??
No your code is not correct. Remove the code to add image in listWidget from screen::conten() method and add it to "finished" SLOT of your class.
Also provide some more inputs like for which platform you compiled your code and testing on which device.
You can read response in QImage, like
QImageReader imageReader(reply); //reply is response from QNetworkAccessManager
QImage myImage= imageReader.read();
And then add to listWidget...
You will get signal "finished" whenever image is downloaded. So try to check to get image from there and add it to your listWidget.
Congratulations Rahul!! :)
Instead of using multiple .mmp file for different platform (for same project) you can keep common .mmp file and use macro in it. The easiest way to get current platform in .mmp file is to define some...
Thank you every one for congratulating me on reaching 3000 posts. :)
You may want to read this article.
First download the image using QNetworkAccessManager and then place that image to your list.
No i don't have any code example for that. What kind of problem you are facing?