Forum: Development
2010-04-12, 18:22
|
Replies: 5
Views: 3,248
|
Forum: Development
2010-04-12, 17:15
|
Replies: 5
Views: 3,248
Re: libQtScript
no that wont be needed, in your deb control file you will be specifying this as a dependency , so it will automatically get installed when somebody installs your package.
|
Forum: Development
2010-04-12, 17:06
|
Replies: 5
Views: 3,248
Re: libQtScript
as root execute this to install the qt script module.
apt-get install libqt4-script
|
Forum: Development
2010-03-15, 14:18
|
Replies: 5
Views: 2,292
Re: upload application to garage error
You should not be uploading this size applications through the assistant. Web (http) protocols aren't the best solution for that as they tend to time out etc.
You should look into using dput or...
|
Forum: Development
2010-02-25, 07:02
|
Replies: 5
Views: 2,818
Re: QProcess problem when running on the N900
Have you looked what kind of output does the process give when started?
QProcess p;
p.setStandardOutputFile("stdout.txt");
p.setStandardErrorFile("stderr.txt");
p.start("/opt/myapp/bigprocess",...
|
Forum: Development
2010-02-24, 18:15
|
Replies: 17
Views: 4,875
|
Forum: Development
2010-02-24, 11:12
|
Replies: 17
Views: 4,875
Re: Problem packing a Qt application for Maemo
there are post installation scripts ( postinst ) in the debian folder. They will exist as postinst.ex, make sure you remove the extension .ex.
insert a command like this in it
chown -R user...
|
Forum: Development
2010-02-22, 16:18
|
Replies: 17
Views: 4,875
|
Forum: Development
2010-01-15, 09:08
|
Replies: 10
Views: 4,899
Re: Qt/Fremantle/Kinetic scrolling
Wiki is up, but i'll paste the code anyway :) It's easy as pie
QTableWidget *table = new QTableWidget(this);
table->setProperty("FingerScrollable", true);
Edit: In Qt Creator you just...
|