![]() |
2011-02-05
, 09:21
|
Posts: 63 |
Thanked: 139 times |
Joined on Apr 2010
|
#2
|
![]() |
2011-02-05
, 19:08
|
|
Posts: 64 |
Thanked: 58 times |
Joined on Jul 2010
@ United States
|
#3
|
![]() |
2011-02-05
, 19:46
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#4
|
![]() |
2011-02-05
, 21:13
|
|
Posts: 64 |
Thanked: 58 times |
Joined on Jul 2010
@ United States
|
#5
|
That's the correct one, but you have to have a proper weather.sudoers in /etc/sudoers.d
That said, I have two remarks
1. I'll leave some very nasty comments on the package page and thumb down if I see someone sudo-ing things just because it's too hard to debug a crash
2. Optify
![]() |
2011-02-06
, 08:46
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#6
|
![]() |
2011-02-21
, 02:11
|
|
Posts: 64 |
Thanked: 58 times |
Joined on Jul 2010
@ United States
|
#7
|
The proper solution is to set the target to maemo, the build to debug and press the debug button and get a nice stack trace which tells you where's that dangling pointer you missedI'm pretty sure you're not using anything that really requires sudo - it's just a coincidence that on your machine with sudo it fails in a way that makes it survive. Applications in general (regardless if they are Qt or not) do not need to put into sudo unless they really deal with system stuff.
![]() |
2011-02-21
, 05:19
|
|
Posts: 64 |
Thanked: 58 times |
Joined on Jul 2010
@ United States
|
#8
|
setWindowTitle(location.toElement().text()); ui->title->setText(weekList.at(0).toElement().attribute("period-name")); for(int i = 0; i < 12; i++){ QString title(weekList.at(i).toElement().attribute("period-name")); QString condition(conditionList.at(i).toElement().attribute("weather-summary")); QString temp(hiloList.at(i)); QString icon(iconList.at(i).toElement().text()); dayPeriods->at(i)->setInfo(title, condition, temp, icon); }
/*merge temps into one day period ordered list*/ QList<QString> hiloList; if(hiList.size() > lowList.size()){ for(int i = 0; i < lowList.size(); i++){ hiloList.append(QString("Hi: " + hiList.at(i).toElement().text()) + " F"); hiloList.append(QString("Lo: " + lowList.at(i).toElement().text()) + " F"); } hiloList.append(QString("Hi: " + hiList.at(lowList.size()).toElement().text()) + " F"); }else{ for(int i = 0; i < hiList.size(); i++){ hiloList.append(QString("Lo: " + lowList.at(i).toElement().text()) + " F"); hiloList.append(QString("Hi: " + hiList.at(i).toElement().text()) + " F"); } hiloList.append(QString("Lo: " + lowList.at(hiList.size()).toElement().text()) + " F"); }
/usr/bin/weather
![]() |
2011-02-22
, 23:34
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#9
|
![]() |
2011-02-22
, 23:39
|
|
Posts: 64 |
Thanked: 58 times |
Joined on Jul 2010
@ United States
|
#10
|
Is there any chance that your index is out of bounds ? Also, try to run it in debug mode on-device, you might catch an ASSERT or similar.
The problem I have now is, I can run it from the command line by executing /usr/bin/weather, but it doesn't seem to work from the .desktop file UNLESS I run it as sudo.
weather.desktop:
Any idea why this is?
Did I leave out any important information?
EDIT: Also, I can compile the project and install it on my x86 emulator target in scratchbox and it works fine from the .desktop file...
Last edited by antman8969; 2011-02-21 at 05:53.