Forum: Development
2013-12-27, 17:56
|
Replies: 1
Views: 1,495
|
Forum: SailfishOS
2013-12-19, 13:50
|
Replies: 70
Views: 46,412
|
Forum: Jolla1 & TOH
2013-12-11, 22:51
|
Replies: 104
Views: 56,349
Re: Jolla Owners hints and tips and app sites
You apparently can get Google Play to work with these instructions http://jollafin.blogspot.fi/2013/11/play-store-for-jolla.html and then install it from there, or then you can do what I did and use...
|
Forum: Applications
2010-08-09, 18:23
|
Replies: 39
Views: 17,012
|
Forum: Themes
2010-08-08, 08:54
|
Replies: 2
Views: 3,139
Re: File Manager icon lives where?
/opt/usr/share/icons/hicolor/64x64/hildon/tasklaunch_file_manager.png
EDIT: And I found this by finding out the icon name first from file /usr/share/applications/hildon/filemanager.desktop and...
|
Forum: Themes
2010-08-07, 11:01
|
Replies: 46
Views: 26,241
|
Forum: Themes
2010-08-07, 08:43
|
Replies: 6
Views: 6,172
Re: Loopable Wallpapers - various
Those attachments are resized here in tmo so they are not 800x480. You need to upload them somewhere else or put them in a zip package and put that as attachment.
|
Forum: Development
2010-08-04, 07:09
|
Replies: 4
Views: 2,713
|
Forum: Android
2010-08-04, 05:08
|
Replies: 223
Views: 92,134
Re: Multiboot 0.2.5 released
Hi,
I have vmlinuz-2.6.28-omap1 and vmlinuz-2.6.28.10power37 in /boot/multiboot and following items in /etc/multiboot.d/:
# Maemo-2.6.28-omap1.item
ITEM_NAME="Maemo 2.6.28-omap1"...
|
Forum: Nokia N900
2010-08-02, 17:28
|
Replies: 8
Views: 10,585
Re: N900 Serial Number?
I would think so since I don't know any other serial number which it could be.
EDIT: Or is there another serial?
|
Forum: Nokia N900
2010-08-02, 17:23
|
Replies: 8
Views: 10,585
|
Forum: Development
2010-08-02, 15:32
|
Replies: 170
Views: 44,613
|
Forum: Development
2010-08-02, 12:35
|
Replies: 170
Views: 44,613
|
Forum: Games
2010-08-01, 15:52
|
Replies: 2,578
Views: 777,765
Re: PSX4All Maemo Edition
If you have ripped the game yourself, there might be a chance that you haven't ripped it correctly since PSX games need to be ripped somehow different than for example music CDs. It has something to...
|
Forum: Themes
2010-07-25, 20:17
|
Replies: 1,202
Views: 281,568
|
Forum: Themes
2010-07-25, 19:39
|
Replies: 1,202
Views: 281,568
|
Forum: Themes
2010-07-25, 16:56
|
Replies: 1,202
Views: 281,568
|
Forum: Applications
2010-07-22, 18:15
|
Replies: 672
Views: 246,654
|
Forum: Games
2010-07-21, 17:08
|
Replies: 30
Views: 17,679
|
Forum: Development
2010-07-20, 15:09
|
Replies: 170
Views: 44,613
Re: Need assistance from QT programmer
You can use QSettings class for that. Just add following functions to your MainWindow class:
void MainWindow::saveSettings() const {
QSettings sett("blackplastic-theme/config");
...
|
Forum: Off Topic
2010-07-20, 14:56
|
Replies: 29
Views: 10,426
|
Forum: Development
2010-07-17, 12:28
|
Replies: 170
Views: 44,613
Re: Need assistance from QT / Python programmer
QProcess emits signal finished() when it is finished, so you'll need to add a slot to your mainwindow class and connect the finished() signal to the slot and do there whatever you want to do when...
|
Forum: Themes
2010-07-17, 11:57
|
Replies: 19
Views: 3,922
Re: How to copy a theme?
Should that work? I tried similar cp thing on my desktop linux and doesn't work.
EDIT: You must have confused to mv because with it that works, but here the point is to copy and not to move.
|
Forum: Development
2010-07-17, 09:44
|
Replies: 170
Views: 44,613
|
Forum: Development
2010-07-17, 09:32
|
Replies: 170
Views: 44,613
Re: Need assistance from QT / Python programmer
You can also use the progress indicator in the top bar:
setAttribute(Qt::WA_Maemo5ShowProgressIndicator, true);
// needs "#include <QtMaemo5>"
And when script is done set it back to false.
|