/srv/irclogs.ubuntu.com/2010/05/03/#kubuntu-devel.txt

ScottKjussi: Thanks.00:34
=== jonathan___ is now known as jjesse
=== claydoh_ is now known as claydoh
nixternalDarkwingDuck: ping04:34
nixternalk, i will try you tomorrow...chilling for the rest of the night then heading to bed...long weekend of bicycle racing...totally exhausted and weirdly sunburned04:35
maconixternal: not as weird as falling asleep sunbathing with your hand on your tummy, i hope?05:01
jussimaco: LOL06:41
jussiWell done to everyone on a great release - upgrade went almost perfect, just a small pioneers bug (not kubuntu's fault) and needed to remove the plasma config files. all good :)10:57
apachelogger\o/ cold coffee11:42
* apachelogger finds it scary that he can write C that looks more complex than assembly ^^11:42
Tm_Tassembly is simple11:48
* JontheEchidna joins the sunburned club12:31
=== dendrobates is now known as dendro-afk
=== dendro-afk is now known as dendrobates
apacheloggerJontheEchidna: see, that is why I do not like the sun ;)13:07
* jussi puts the pasty white apachelogger in the basement to work :D13:42
txwikingerwell.. it is really nice that KDE implemented some of my feature-requests I made :)14:03
* txwikinger is just a little disturbed that the lucid upgrade deleted his autofs mount configuration without even telling14:03
=== jefferai_gone is now known as jefferai
ofirkamichair: you here?14:39
amichairofirk: indeed I am!14:39
ofirkamichair: how are you?14:39
amichairofirk: other than a bit of arm strain, all is well :-)14:40
amichair(arm the limb, not the processor ;-) )14:40
ofirkamichair: ok, than I can I ask you a question about ubiquity?14:40
amichairofirk: sure14:40
amichairofirk: (btw there's #ubuntu-installer where the expert are)14:41
ofirkamichair: I found some RTL bugs14:42
ofirkamichair: in the qt frontend...14:42
ofirkamichair: for example, the arrows are inversed...14:42
ofirkamichair: so, I though, since it is written in Python, and I only afraid from C++, why not try fixing this bug?14:43
amichairofirk: right on!14:44
ofirkamichair: I looked at the code and found that in order to display the right arrow you need to add QApplication::isRightToLeft()14:44
ofirkamichair: look at this:14:44
ofirkif ( QApplication::isRightToLeft() ) {14:44
ofirk-        d->yearForward->setIcon( KIcon( QLatin1String( "arrow-left-double" ) ) );14:44
ofirk-        d->yearBackward->setIcon( KIcon( QLatin1String( "arrow-right-double" ) ) );14:44
ofirk-        d->monthForward->setIcon( KIcon( QLatin1String( "arrow-left" ) ) );14:44
ofirk-        d->monthBackward->setIcon( KIcon( QLatin1String( "arrow-right" ) ) );14:44
ofirk+        d->yearForward->setIcon( KIcon( "go-next-rtl" ) );14:44
ofirk+        d->yearBackward->setIcon( KIcon( "go-previous-rtl" ) );14:44
ofirk+        d->monthForward->setIcon( KIcon( "go-next-rtl" ) );14:44
ofirk+        d->monthBackward->setIcon( KIcon( "go-previous-rtl" ) );14:44
ofirk     } else {14:44
ofirk-        d->yearForward->setIcon( KIcon( QLatin1String( "arrow-right-double" ) ) );14:44
ofirk-        d->yearBackward->setIcon( KIcon( QLatin1String( "arrow-left-double" ) ) );14:44
ofirk-        d->monthForward->setIcon( KIcon( QLatin1String( "arrow-right" ) ) );14:44
amichairofirk: pastebin?14:45
ofirk-        d->monthBackward->setIcon( KIcon( QLatin1String( "arrow-left" ) ) );14:45
ofirk+        d->yearForward->setIcon( KIcon( "go-next" ) );14:45
ofirk+        d->yearBackward->setIcon( KIcon( "go-previous" ) );14:45
ofirk+        d->monthForward->setIcon( KIcon( "go-next" ) );14:45
ofirk+        d->monthBackward->setIcon( KIcon( "go-previous" ) );14:45
ofirk     }14:45
* ofirk forgot about pastebin14:45
ofirkoops14:45
amichair!pastebin14:45
ubottuFor posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.14:45
amichairofirk: np :-)14:45
amichairI see u opened bug #56368714:46
ubottuLaunchpad bug 563687 in ubiquity "Arrows are reversed in RTL" [Undecided,New] https://launchpad.net/bugs/56368714:46
ofirkamichair: yeah, before the release14:46
ofirkamichair: never thought that I would fix it :)14:46
ofirkamichair: I don't know if there are any rules of how to fix things and how to submit them14:47
ofirkamichair: can you be my mentor for this bug fix?14:48
ofirkamichair: the bug is easy to fix, but I don't know how to submit the fix, to where, how???14:49
amichairofirk: u can either submit a patch to the bug report, or (what I do) work on my own branch and then find someone to review+commit it (JontheEchidna is most helpful with such things :-) )14:49
amichairofirk: have u worked with bzr?14:49
ofirkamichair: yes14:50
ofirkamichair: so I need to keep only the fixed files on my branch?14:50
amichairu can "bzr branch" off of trunk, this will give u a full local working copy. then u work normally - fix things, make commits, and push it (to ur own lp branch location) - then just find a commiter to nudge14:51
amichairit's handy to use dch before committing to update the changelog with the proper format, and u can specify the lp bug it closes, e.g. "Fix arrows RTL bug in KDE frontend (LP: #563687)"14:53
ubottuLaunchpad bug 563687 in ubiquity "Arrows are reversed in RTL" [Undecided,New] https://launchpad.net/bugs/56368714:53
amichairand finally use debcommit, which knowns how to add the right parameters to bzr commit to make the link from the changelog to the actual bug14:54
ofirkamichair: all of this is from the CLI, right?14:55
amichairyep14:55
amichairspecifically working with ubiquity can be tricky because u need a VM to test all the bootup/installation stuff, but for the buttons u can probably do without14:56
ofirkamichair: I am actually working with Bazzar Explorer14:57
amichairoh, don't know it...14:57
ofirkamichair: I am a nOOb... :)14:57
amichairofirk: me too :-)14:57
ofirkit is a GUI for bzr14:57
ofirkhttp://doc.bazaar.canonical.com/explorer/en/index.html14:58
amichairfor exploring and stuff it can be useful, but I'd stick to the deb tools for the actual commit because of all the extra integration it does (unless bzr explorer does it too)14:58
ofirkit has a good integration with lp14:58
amichairthen feel free to use it :-)14:59
ofirkI will try :)14:59
ofirkthanks amichair for your help!15:00
amichairfor experimenting with the bug closing/changelog stuff, remember u can always uncommit the last commit if it didn't do what u want :-)15:00
ofirkeven after a long time?15:00
ofirkyou wrote always so I guess: yes!15:01
amichairas long as it's the last one. cherrypicking bad commits down the log is more of a problem (not sure how to, actually)15:01
amichaircan bzr exlorer show u the console or command output, so u can see exactly what it's doing? that can be helpful too15:03
ofirkyes, it displays everything it does15:04
amichairok, so u can make sure it adds the bug closing parameters etc. if it has a deb changelog editor, that's really neat.15:04
txwikingerwhere did ssh-askpass-kde gp?15:05
txwikingergo?15:05
=== michaelk is now known as Guest42418
ofirkamichair: you said that a VM is needed in order to test ubiquity15:08
ofirkamichair: how exactly you test it?15:08
amichairofirk: I also suggested that for just testing the gui u can probably do without and keep it simple :-)15:09
amichairI like virtualbox personally15:09
ofirkamichair: yeah, I know15:09
ofirkamichair:  but just for curiosity15:09
amichairI make a snapshot right after everything is setup15:09
amichairthen copy the relevant ubiquity files over using share, and run it15:10
amichairalthough for little fixes and experiments u can just edit on the guest VM directly and when u get it right copy the changes back to the host15:11
ofirkso you install kubuntu, then ubiquity, and make a snapshot from it15:12
ofirkthen everytime you need to test a change, you just replace the relevant file15:12
amichairu can also make a snapshot straight from the live session without installing15:12
ofirknice, I like this method15:13
amichairu can prepare whatever u need (tools, vim, script, even guest addins etc) and then take the snapshot so next time it's all set to go15:13
ofirkvirtualbox is awesome!15:14
ofirkit is fast and simple15:14
amichairyeah, I really like it ever since I first tried it in the windows days15:14
ofirkhave you ever used vmware?15:15
amichairI used to run kubuntu under windows, but nowadays it's the other way around. or more often, kubuntu in kubuntu :-)15:15
amichairnot recently, maybe gave vmware a shot a few years back, but ever since virtualbox I haven't been missing anything15:16
ofirkyou are right :)15:16
txwikingerhmm the whole ssh-agent stuff does not work anymore at all15:17
ofirkI don't like vmware because it is bloated15:17
ofirkand IMHO also slower than virtualbox15:18
amichairI hope Oracle have good plans for it. Although there's always GPL protection :-)15:19
ofirkapachelogger is a sysadmin?15:21
apacheloggerfortunately not ^^15:21
ofirkyeah :)15:22
ofirkamichair: thanks again for your help!15:25
amichairDamn, homemade hummus doesn't play nice with homemade bread15:27
ofirklol15:27
amichairit's all crumbling up on me!15:27
ofirkhomemade bread is delicious !!!!!!15:27
nixternalmaco: I did that on my honeymoon...my x and I fell asleep on the beach, and my hand was on my chest....not cool...i had a big white hand print while the rest of me was the color of a lobster15:28
ofirkhello nixternal!15:29
ofirkfunny story :)15:29
amichairlol nixternal15:29
JontheEchidnaI can't say that my sunburns are quite as interesting, just your normal red face and forearms/hands15:34
JontheEchidnaI'm not too badly burned either15:34
amichairI've only got some LCD burns at the moment15:35
amichairbut summer is getting near...15:36
ofirklol15:36
ofirkI once had sunburns all over my face and on way back home I fall asleep in the car with the air conditioner on half of my face. when I woke up I had half face red, half face white15:37
nixternalhola...i am so out of it today...sun has killed me15:40
Tm_Tnixternal: you sick man, didn't you know that sun is just out there to kill us?!15:40
nixternalTm_T: yes, it is a death star for sure15:41
nixternalthe funny thing is, it was freakin' cloudy for 90% of the day yesterday15:41
nixternali wore a long sleeve shirt which is light, so it is good for temps between 60 and 80f....so when it got a bit warm, i would push the sleeves up a little, just below the elbow...so my sun burn is my hands up to just below my elbow15:42
nixternalare you fucking kidding me? not one of our Kubuntu sessions were excepted into Open Week?15:58
nixternalthat is horseshit, and I am super pissed right now15:58
shtylmannixternal: what is open week?15:59
nixternalit is where a ton of people come around on irc and listen to you talk about your project, how to get involved, and what not16:01
nixternalhttps://wiki.ubuntu.com/UbuntuOpenWeek16:01
nixternalwe have them after every release16:01
shtylmancool16:02
amichairNo Kubuntu at all? That's crazy!16:04
JontheEchidnaNobody was approached at all about Kubuntu sessions? :/16:04
nixternalJontheEchidna: yeah, I put in for 2 sessions16:05
JontheEchidnawtf16:05
nixternalone for today to be about getting involved in Kubuntu, and we said DarkwingDuck_ would be best, since he is our newest member and got to work around here with the quickness16:06
nixternalthen the 2nd was going to be a Q&A with me and Riddell like we always do16:06
amichairofirk: shtylman worked on ubiquity gui if u have questions. (Whatever happened to that pastebin?)16:06
ofirkamichair: ok, thanks16:07
JontheEchidnahttp://simplest-image-hosting.net/i0-aqqw2tjfdjnk3vvw2ezimryzv2armqwb-jpeg.jpeg16:08
amichairofirk: Of course I'd be happy to help too, but I don't know as much :-)16:09
amichairJontheEchidna: is that you?16:10
JontheEchidnaNo, that's The Master from Doctor Who16:10
amichairlol16:11
amichairnever got around to that yet...16:11
amichairwhere is a good place to start? How many seasons in the current run?16:12
JontheEchidnafive16:13
amichairis it ok to start there without knowing anything on the previous history?16:14
JontheEchidnastarting with the start of the new run should be fine16:14
JontheEchidnae.g. you don't have to watch the 30 years of classic who to get things in the new series16:14
amichairphew! :-)16:15
JontheEchidna(I've only ever watched the first season of the classic series, tbh)16:15
amichairJontheEchidna: Great, I'll give it a go sometime, see what all the fuss is about : -)16:20
nixternaloh, this sun burn shit is killing me, and i have to ride today16:23
=== dendrobates is now known as dendro-afk
=== dendro-afk is now known as dendrobates
nixternalanyone up for doing a kubuntu session anytime this week at either 14:00 or 21:00 UTC?16:26
macoJontheEchidna: doctor who is scary!16:28
JontheEchidnaafter the last two week's episodes, I'll agree16:28
macoJontheEchidna: oh oh sarah jane too! it took me like 5 hours of *watch 2 minutes* *get freaked out* *help people in #ubuntu* to get through the Eternity Trap16:29
JontheEchidnaI've not gotten the chance to watch any of the spinoffs yet, been too busy with other things16:29
macosarah jane's a kid's show. its on CBBC16:30
apacheloggeramichair, JontheEchidna: the fact that it is not necessary does not mean you shouldnt do it :P16:31
apacheloggeryou are missing out if you dont IMHO16:31
nixternalanyone up for doing a kubuntu session anytime this week at either 14:00 or 21:00 UTC?16:32
nixternalanyone up for doing a kubuntu session anytime this week at either 14:00 or 21:00 UTC?16:32
nixternalanyone up for doing a kubuntu session anytime this week at either 14:00 or 21:00 UTC?16:32
nixternalthere, i know someone saw it this time16:32
JontheEchidnalol16:32
nixternali can't do that this week, so i am out16:32
Tm_Tnot me16:32
apacheloggersaw what?16:32
Tm_Tapachelogger: Igor16:32
apacheloggerSaw 6 \o/16:32
nixternalyou need your eyes checked16:32
JontheEchidnaI have finals this week...16:32
apachelogger.commcrypt_runs,4,4 :P16:33
apacheloggertake that16:33
nixternal14:00 == 09:00 here, and I am sleeping...you aren't waking me up early to volunteer for something :p16:33
nixternal21:00 == 16:00 here, and that is bike riding time16:33
* apachelogger wants everyone to note how he made an encrypt() function do crypt runs ^^16:33
apacheloggerive got them all ... spoky ghosts and undead bodies16:33
apacheloggerreminds me on medievil for the playstation16:34
apacheloggerhttp://www.youtube.com/watch?v=k6kVxueYC7o16:35
delightdid anybody notice that in lucid usermanagement in systemsettings is not working 100% correctly ? if you add a user and tell it the user should be able to administer the system its not adding the group admin its adding the group adm .. which is not in default sudoers file ... result no admin rights for the new user17:26
delightsebas: btw ... remember that problem where my network was not starting ... this just happened on boxes where the ubuntu-desktop was installed in parallel (bad idea as it shows) ... i was able to reactivate it by loging into gnome. that networkmanager had a switch to activate the network.17:28
BentJi have upgrade my kubuntu from hardy to lucid, afterwards the sound has gone (tested by using Amarok). A workaround to bring the sound back, is to stop Amarok, and then to delete ~/.pulse/*runtime .. The sound is back until next reboot ... But what is the root cause?18:01
=== dpm is now known as dpm-afk
ScottKSounds like you have pulseaudio installed and that's not the default for Kubuntu (although it's working ~fine here).  I'd try removing that.18:14
BentJok, I'll try that18:15
BentJThanks ;)18:15
Riddellevening18:16
jjesseevening Riddell18:17
Mamarokis there a reason to set the #kubuntu-netbook channel for invite only?18:32
Mamarokanyone?18:34
ScottKMamarok: It's supposed to be forwarding to #kubuntu.18:35
ScottKI'm trying to get rid of it.18:35
=== yofel_ is now known as yofel
* ScottK looks at jussi.18:35
MamarokScottK: ah, thanks :)18:35
jussiMamarok: because you are already in #kubuntu18:35
Mamarokwell, you must have changed that very recently, this morning I was still able to join18:36
jussiScottK: btw, did you get a chance to do those gobby backports?18:36
ScottKjussi: I have not.18:36
jussiMamarok: still able to join or still joined?18:36
jussiScottK: perhaps you want to: /msg chanserv clear #kubuntu-netbook users reason goes here18:37
Mamarokwell, still joined18:37
jussiwhich will clear everyone out of there18:37
jussiMamarok: yeah, we didnt boot everyone... yet18:37
* ScottK treis.18:38
ScottKjussi: Thanks.  Works.18:40
jussi:)18:40
ScottKjussi: How do we get rid of the ChanServ?18:40
macoScottK: turn off guard on teh channel?18:40
jussiScottK: just leave it for now18:40
ScottKjussi: OK.18:41
ScottKSo I guess I just leave and call it done then.18:41
jussiwe will drop the channel in a week or 2, when people have gotten used to it not being there.18:41
ScottKOK.18:41
tsimpsonon a side-note, #kubuntu-testers could probably do with closing too18:42
BentJScottK: Thanks it worked ;)18:43
ScottKOK.  Great.18:44
ScottKjussi: I removed it from the ChannelList wiki page too.18:49
jussiScottK: excellent18:49
rgreening_hey all18:58
=== rgreening_ is now known as rgreening
=== rdieter_ is now known as rdieter
neversfeldehi rgreening19:03
rgreeningneversfelde: I am fixing the workspace build now. forgot to remove one of the patches from the series file.19:03
rgreeningdoh19:03
rgreening:)19:03
neversfeldergreening: I did that and testbuild a few minutes ago19:03
neversfeldeftbfs19:04
rgreeningneversfelde: let me deal with it19:04
neversfeldeok19:04
rgreeningany other packages need uploading?19:04
neversfeldewe are far away from being complete19:05
neversfeldeI'll start with a minor package now19:05
rgreeningneversfelde: ok. I'll get workspace done asap. Im building now.19:06
neversfeldegreat19:06
rgreeningneversfelde: anyone else helping build? I know some folks were/are away...19:08
apparleapachelogger: ping19:09
ScottKhttp://www.digibarn.com/collections/screenshots/Screenshots%20Funstuff/MSOffice.jpg19:09
neversfeldergreening: there ware no progress over the weekend, so everyone seems to be on holiday19:09
rgreeningheh. ya. I was in same boat. thought Id have some cycles... but never did. back at it now..19:10
neversfeldesame for me :)19:10
rgreeningScottK: that is farked19:10
rgreeninglol19:10
apparleScottK: what's that...19:12
ScottKMS Office.19:12
jjessewow that's an awesome pic of ms office19:14
neversfeldeI had a job interview lately, they didn't want to employ me, because I do not have enough experience with MS Office, now I know why :)19:15
apparle:D19:15
txwikingerScottK: Do you know by chance how to get ssh-agent with kde to work?19:16
ScottKNo.  I don't use it.19:16
rgreeningneversfelde: when the build failed for you, how far along was the fail?19:28
neversfeldergreening: I can upload the build log, if you want?19:31
rgreeningna. just curious. Im at 15% now...19:31
neversfeldergreening: at the end, a cp failed19:32
rgreeningneversfelde: ok. I can deal with that easy enough. ty19:32
rgreening42%19:43
neversfelde77 %19:52
neversfeldeWinner19:52
rgreeninglol19:57
rgreening73% .... come on speed up ..19:57
rgreeningI need to be building on my cluster... I'll be setting that up as a build server in a few months I guess...19:57
bulldog98hi I’m trying to branch the following branch: lp:ubuntu/lucid/kubuntu-docs and lp:~kubuntu-members/pbuilder/pbuilder-hooks , but I get an Error20:09
bulldog98sh: getcwd() failed: No such file or directory20:10
bulldog98Permission denied (publickey).20:10
bulldog98bzr: ERROR: Connection closed: Unexpected end of message. Please check connectivity and permissions, and report a bug if problems persist.20:10
bulldog98neversfelde had the idea that you have to be ubuntu-member to branch it but normaly an checkout should work20:11
ScottKDid you try a checkout?20:29
bulldog98ScottK: yes20:39
neversfeldebulldog98: at least the docs should have nothing to do with being a kubuntu member or not, so there is something wrong with your bzr setup20:40
bulldog98hm that’s not good20:41
neversfeldebulldog98: check your ssh keys, I'd say20:42
bulldog98neversfelde: ok20:42
bulldog98neversfelde: reimporting into launchpad didn’t helped20:47
bulldog98s/helped/help/20:48
neversfeldebulldog98: no idea sorry20:49
ScottKProbably ask in #launchpad.20:51
bulldog98ScottK: I’ll do that20:52
rgreeningneversfelde: found the issue. kdebase-workspace-dev.install hardcoded 4.4.2 in the path for come of the cmake files. Never picked it up on test build against 4.4.2, but FTBFS on 4.4.3 becasue of it. Uploading in a few minutes20:55
rgreenings/come/some20:55
neversfeldesounds good20:56
=== dpm-afk is now known as dpm
ofirkamichair: hi :D21:06
rgreeningneversfelde: I uploaded new revision. My build complained at end about some duplication, but I think that came out of the build fail I was in... I'll check on it later and see if it built, and if not, work on any needed fix.21:11
neversfeldergreening: I will finish kdenetwork and go to bed, so I will not fix anything till tomorrow21:12
* neversfelde crosses fingers21:12
rgreeningheh21:12
rgreeningnp21:12
rgreeningIm working kdeutils, then going home. will check back later neversfelde.21:13
neversfeldergreening: get home save and gn821:17
rgreeningheh. yar21:17
rgreening:)21:17
rgreeningScottK: are we leaving standards version at 3.8.3 or bump to 3.8.4?21:18
ScottKrgreening: For 4.4.3, leave it.21:18
rgreeningk. thought so21:18
ScottKReally we should only bump when merging frm Debian and they've bumped.21:18
rgreeningyeah21:18
=== ghostcube_ is now known as ghostcube
bulldog98neversfelde: works now22:03
bulldog98neversfelde: had to use clone22:05
=== michaelk is now known as Guest85937
apacheloggerbug 574460 is sort of fun22:35
ubottuLaunchpad bug 574460 in akonadi "akonadi not operational - no contacts shown in kontact" [Undecided,New] https://launchpad.net/bugs/57446022:35
apacheloggersee, the reported got rid of the earlier innodb error by randomly switching settings22:37
apacheloggerone of them happened to be StartServer=false22:37
apacheloggerwhich now makes akonadi not start the internal mysql but try to connect to a global mysqld22:37
apacheloggersuffice to say there is none, making akonadi go down the drain22:38
Sputgotta love users22:53
apparleapachelogger: hi...23:06
amichairofirk: evenin'23:07
apacheloggerapparle: yo23:07
apparleapachelogger: I had some chat on API for package management...23:07
apparleapachelogger: found this http://drfav.wordpress.com/2009/12/01/introducing-shaman-a-new-universal-package-management-frontend/23:08
apachelogger*nod*23:10
ofirkamichair: hi23:10
ofirkamichair: can you look at this? http://pastebin.com/xXU2urn023:10
apparleapachelogger: just thought I would tell you.... after all that discussion we had yesterday......23:11
amichairofirk: look at this I can23:11
* apachelogger notes that KDE has default widgets for foward/back which should be used23:11
apacheloggerimagine the code duplication if we had that kind of if for all progressing buttons :)23:12
ofirkis there any other way of fixing it?23:12
ofirkit is related to bug 56368723:12
ubottuLaunchpad bug 563687 in ubiquity "Arrows are reversed in RTL" [Undecided,New] https://launchpad.net/bugs/56368723:12
apacheloggerapparle: I know about it, I do not think very highly of it though, I have yet to see a stable api spec et al ... it is a movement in the right direction though23:12
apparleapachelogger: talked to the dev for mentoring ...... for working on it23:13
amichairofirk: whatever apachelogger says, I shall concur :-)23:13
ofirkthis kind of bugs make kubuntu look un-professional23:14
ofirksome big israeli news sites are publishing reviews on Ubuntu and Kubuntu23:16
ofirkthe first thing they look for is this kind of things which actually make a wrong impression about Kubuntu23:16
apacheloggerofirk, amichair: deriving from the right class would solve that issue ;)23:16
ofirkapachelogger: I found the solution here http://lists.kde.org/?l=kde-usability&m=119572601811622&w=223:19
ofirkapachelogger: actually, the only problem is for the arrow icons, so it shouldn't be a big deal23:20
* apachelogger thinks that kdatepicker is quite different from ubiquity23:21
apacheloggerhttp://api.kde.org/4.0-api/kdelibs-apidocs/kdeui/html/classKDatePicker.html23:21
apacheloggerit implements own buttonization23:21
apacheloggerubiquity on the other hand is a dialog, so it should just implement the right kind of dialog class or someone should introduce appropriate movement buttons in some generic class23:22
ofirkI will look at other projects to see what they do23:23
ofirkand then report back23:24
ofirk:)23:24
=== dendrobates is now known as dendro-afk
* apachelogger notes that even if other projects implement their own rtl magic for progress buttons it doesnt make it any more right :P23:24
amichairmaybe something hiding here http://techbase.kde.org/Contribute/RTL-bugs23:25
apacheloggernothing in sight23:26
ofirkmaybe we need to use QApplication::reverseLayout() ?23:51
* apachelogger is wondering if that is not used by default if the system is rtl23:52
amichairthe display is reversed iirc, just the arrow buttons are wrong23:53
apacheloggerin that case the buttons should either get their own class or, which is probably better ubiquity should derive from kassistantdialog or what it's called and use its next/previous capabilities23:56
apacheloggerwhich probably brings the rtl support for free23:56
amichairshouldn't kicon be directionally aware?23:57

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!