Re: [Libreoffice] Cannot save .ods and .odt files

2011-03-07 Thread Kevin Hunter
At 10:51am -0500 Mon, 07 Mar 2011, Francois Tigeot wrote: Well, I was also thinking about a printf-like solution. I just hoped to not have to rebuild a binary, it takes almost two hours and a half... That's just it: you don't have to rebuild the whole of LO. By using 'make dev-install', you c

Re: [Libreoffice] Cannot save .ods and .odt files

2011-03-07 Thread Kevin Hunter
At 7:54am -0500 Mon, 07 Mar 2011, Francois Tigeot wrote: On Mon, Mar 07, 2011 at 07:02:30AM -0500, Kevin Hunter wrote: Are you asking about inserting debugging statements? I hoped to find some way to print more details at runtime. If I can't do it with an existing binary, I'll reb

Re: [Libreoffice] Cannot save .ods and .odt files

2011-03-07 Thread Kevin Hunter
At 8:45am -0500 Mon, 07 Mar 2011, Francois Tigeot wrote: I would suspect something like file-locking to be a problem here. Do you have an 'strace' equivalent you can use to see what syscalls fail ? truss is the strace equivalent but it stops printing anything after the initial LibO launch. Ther

Re: [Libreoffice] Cannot save .ods and .odt files

2011-03-07 Thread Kevin Hunter
At 3:11am -0500 Mon, 07 Mar 2011, Francois Tigeot wrote: Something has been bothering me for a while: ever since I succeeded in building a LibreOffice binary for DragonFly BSD, I haven't been able to save OpenDocument format files. The dialog box just closes itself and reopens half a second late

Re: [Libreoffice] [REVIEW] fix for a chart crasher

2011-03-03 Thread Kevin Hunter
At 4:22am -0500 Thu, 03 Mar 2011, Tor Lillqvist wrote: for a cherry-pick candidate to libreoffice-3-3. It's a very simple& safe fix, and fixes a crasher as reported in But do you know how those values can end up being negative in the first place, is that a symptom of something being horribly wr

Re: [Libreoffice] [PATCH] remove using namespace rtl

2011-02-28 Thread Kevin Hunter
At 10:14am -0500 Mon, 28 Feb 2011, Kohei Yoshida wrote: So, the idea behind this easy hack task is *not* to convert rtl::OUString to OUString by using "using ::rtl::OUString" per se. The idea behind it is to remove using namespace rtl, and if that causes build breakage because of the use of non-

[Libreoffice] OString += OString + char ... ?

2011-02-27 Thread Kevin Hunter
Hullo List, I hope this isn't a silly question, but I'm a little confused by a current behavior of the O*String classes, and wondering if it's A) known, and B) expected. Please consider this code snippet: - using ::rtl::OString; OString a( "My Test String: " ); OString b( "Gobble Wobble

[Libreoffice] [PATCH] remove using namespace rtl

2011-02-25 Thread Kevin Hunter
Hullo List, A simpleton patch to convert the more sane using ::rtl::* syntax. Kevin 0001-Remove-using-namespace-rtl.patch.xz Description: application/xz ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailm

Re: [Libreoffice] [PUSHED] Comment-translation of writer/sw/source/ui/config

2011-02-24 Thread Kevin Hunter
At 2:22pm -0500 Thu, 24 Feb 2011, Martin Kepplinger wrote: Am 24.02.2011 19:56, schrieb Thomas Arnhold: Hi Martin, thanks for these patches! Bug numbers which are not in the #i12345 format could be deleted (#55402#). I Pushed them as they are! I thought I'd stick to the translation task only

Re: [Libreoffice] [PATCH] Fix replacement of $filename$ in GTK SaveAs dialogs

2011-02-24 Thread Kevin Hunter
At 11:30am -0500 Thu, 24 Feb 2011, Caolán Mcnamara wrote: On Thu, 2011-02-24 at 09:57 -0500, Kevin Hunter wrote: please do spit it back to me with, "you should implement it this way instead" c) I wouldn't bother with the aFileObj.HasError() and return 0, i.e. I'd prefer

[Libreoffice] [PATCH] Fix replacement of $filename$ in GTK SaveAs dialogs

2011-02-24 Thread Kevin Hunter
Hullo List, A patch that fixes a display issue with the GTK SaveAs dialog box that asks for confirmation before overwriting a file. For reference, OO fixes this by removing the string replacement altogether, while this patch keeps in line with the native-to-LO dialogs. As this is my first "

Re: [Libreoffice] [PATCH] [writer/sw/source/ui/app] Translate comments of docsh

2011-02-22 Thread Kevin Hunter
At 9:40am -0500 Tue, 22 Feb 2011, Kohei Yoshida wrote: This is another useful tip for patch integrators. From my own experience of handling patches sent by git send-mail, sometimes they don't attach the patch as an attachment but as the message body. If that happens, you can simply save the ema

Re: [Libreoffice] Patch handling guideline

2011-02-21 Thread Kevin Hunter
At 2:40pm -0500 Mon, 21 Feb 2011, Kohei Yoshida wrote: http://wiki.documentfoundation.org/Development/Patch_Handling_Guideline to help us develop some sort of guideline in order to handle this ever increasing amount of in-coming patches. The page is intended for both those who submit patches, a

[Libreoffice] [PATCH] redundant pointer check

2011-02-17 Thread Kevin Hunter
Hullo List, Simpleton patch to remove a redundant if-block. Cheers, Kevin cppcheck-remove-redundant-check.tar.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman

[Libreoffice] [PATCH] unused variable in writer/uno

2011-02-17 Thread Kevin Hunter
Hullo List, A simpleton patch removing unused variables in writer/uno. Cheers, Kevin 0001-cppcheck-Remove-unused-variables.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.free

[Libreoffice] [PATCH] cppcheck easyhack

2011-02-14 Thread Kevin Hunter
Hullo List, One, likely final, cppcheck-found post- to pre-iterator patch. Cheers, Kevin >From 8648528511581a0ac5cc7f08e9d2e83bd7fef4cd Mon Sep 17 00:00:00 2001 From: Kevin Hunter Date: Mon, 14 Feb 2011 13:48:49 -0500 Subject: [PATCH] cppcheck: post- to pre- *crement change --- vcl/

[Libreoffice] [PATCH] easyhack cppcheck

2011-02-14 Thread Kevin Hunter
Hullo List, Another mini patch, thanks to cppcheck. Kevin 0001-cppcheck-post-to-pre-crement-change.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listi

[Libreoffice] [PATCH] cppcheck easyhack

2011-02-11 Thread Kevin Hunter
Hullo List, Another simpleton cppcheck patch. Kevin 0001-cppcheck-post-to-pre-crement-change.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/li

[Libreoffice] [PATCH] cppcheck easyhack

2011-02-11 Thread Kevin Hunter
Hullo List, Another simple, easy hack, cppcheck based patch. Kevin 0001-cppcheck-post-to-pre-crement-change.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mail

Re: [Libreoffice] [Libreoffice-commits] .: Branch 'libreoffice-3-3' - starmath/source

2011-02-11 Thread Kevin Hunter
At 5:15am -0500 Fri, 11 Feb 2011, Jan Holesovsky wrote: On 2011-02-10 at 13:12 -0500, Kevin Hunter wrote: Do we have guidelines for commit messages? I ask because I think it would be helpful to include just a smidgen more information in them than a reference to various bugzillas. My favorite

[Libreoffice] [PATCH] easyhack: cppcheck pre/post change

2011-02-10 Thread Kevin Hunter
Hullo List, Same as earlier, EasyHack cppcheck-found post to pre increment iterator. Cheers, Kevin >From d623b58d83d254893dd212548461e492e3c2d13b Mon Sep 17 00:00:00 2001 From: Kevin Hunter Date: Thu, 10 Feb 2011 16:24:34 -0500 Subject: [PATCH] cppcheck: post- to pre- *crement cha

Re: [Libreoffice] [Libreoffice-commits] .: Branch 'libreoffice-3-3' - starmath/source

2011-02-10 Thread Kevin Hunter
[Resending, this time to the list.] Hi Michael, At 8:06am -0500 Thu, 10 Feb 2011, Michael Meeks committed: starmath/source/visitors.cxx |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) New commits: commit 60c297cc61df9ef025312f75ba214b4a8499e959 Author: Luke Dixon<6b8b4...@gmail.c

[Libreoffice] [PATCH] easyhack: cppcheck pre/post change.

2011-02-10 Thread Kevin Hunter
Hullo List, A simple cppcheck easyhack. Kevin >From 0a4b85e9586adf6942f9b061733db9959c2c41d0 Mon Sep 17 00:00:00 2001 From: Kevin Hunter Date: Thu, 10 Feb 2011 10:31:10 -0500 Subject: [PATCH] cppcheck: post- to pre- *crement change. --- vcl/aqua/source/app/salinst.cxx |2 +- 1 fi

Re: [Libreoffice] LibO security

2011-02-08 Thread Kevin Hunter
At 2:22am -0500 Tue, 08 Feb 2011, Thorsten Behrens wrote: Well, we have. It's Cc-ed. What we prolly need is to properly document this. No no! They're just practicing good security: obscurity! ;-) Kevin ___ LibreOffice mailing list LibreOffice@lists

Re: [Libreoffice] Does OO/LO have an API?

2011-02-07 Thread Kevin Hunter
At 6:49am -0500 Mon, 07 Feb 2011, Thorsten Behrens wrote: Kevin Hunter wrote: After about 20 minutes of Googling, and random grepping through the code base, I'm having no luck. Does such a beast exist? At least I'm not aware of any - thing is, higher-level functionality in LibO

[Libreoffice] Does OO/LO have an API?

2011-02-05 Thread Kevin Hunter
Hullo List, Is there an API for working with LO programmatically? Rather than create an ODF with the myriad of tools available, I'm looking to directly invoke a LO object within a script. I'm aware of the UNO bridge, but that requires a running instance of LO and connection to it as an exte

Re: [Libreoffice] [PUSHED] remove unused declaration - an unlikely fix for armel segfault in regcomp

2011-02-02 Thread Kevin Hunter
At 3:31pm -0500 Wed, 02 Feb 2011, Michael Meeks wrote: On Wed, 2011-02-02 at 13:44 +, Wols Lists wrote: Not quite sure what you mean by "legacy Intel", but if you're referring to all single-processor CPUs, they still power most of the budget brand new laptops! Surely those guys are hyper-t

Re: [Libreoffice] Remove old Word 6.0/95 "save as" support

2011-02-02 Thread Kevin Hunter
At 12:06am -0500 Wed, 02 Feb 2011, Bryan Quigley wrote: I believe the old binary StarOffice file "save as" support is going away soon as well. Perhaps tangentially (or not at all related), does anyone know if any of the plugins rely on particular file format export capabilities? Specifically,

Re: [Libreoffice] Remove old Word 6.0/95 "save as" support

2011-02-02 Thread Kevin Hunter
At 12:06am -0500 Wed, 02 Feb 2011, Bryan Quigley wrote: [ Should we remove export capabilities to old file formats? ] The usability problem I've seen is that users: * want to save in MS Word format, but don't know what version to use * the pick 6.0 or 95 thinking many different things (low

Re: [Libreoffice] [PATCH] bsdtar works as fine as gnu tar

2011-02-01 Thread Kevin Hunter
At 12:18pm -0500 Tue, 01 Feb 2011, Baptiste Daroussin wrote: Seriously why not supporting bsdtar? It has a great effort is made to make it gnu compatible in fact compatible with the largest possible set of archive formats. All the testing I have done with bsd tar shows it performs at least as wel

Re: [Libreoffice] USE_GMAKE=1 make -> chmod errors

2011-01-31 Thread Kevin Hunter
At 12:32am -0500 Tue, 01 Feb 2011, Norbert Thiebaud wrote: This is a bug, unrelated to gnumake, that has been fixed in master (but not picked-up in the gnumake2.1 branch) you can ignore these for now. Gracias. Kevin ___ LibreOffice mailing list Libre

[Libreoffice] USE_GMAKE=1 make -> chmod errors

2011-01-31 Thread Kevin Hunter
Hullo List (Norbert), I've finally found some time to get back to LO dev (yay!). But only for about 10 minutes (boo!). I've checked out the gnumake2.1 branch and made things the usual way: a successful build. When I execute make with USE_GMAKE=1, however, I'm getting lots of 'chmod: cannot

Re: [Libreoffice] [Libreoffice-commits] .: vcl/source

2011-01-25 Thread Kevin Hunter
At 11:15am -0500 Tue, 25 Jan 2011, David Tardon wrote: Hrm, the commit you made 20 minutes earlier made sense. Why would you revert the removal of unused variables? Because Caolan already silenced the warning in a different way. I still prefer to isolate such code in #ifdef, but it clutters the

Re: [Libreoffice] [Libreoffice-commits] .: vcl/source

2011-01-25 Thread Kevin Hunter
At 9:42am -0500 Tue, 25 Jan 2011, David Tardon wrote: vcl/source/fontsubset/cff.cxx |4 1 file changed, 4 deletions(-) New commits: commit a1f7b2515a6bd09a5569735a1269a9a4029d2d5c Author: David Tardon Date: Tue Jan 25 15:41:35 2011 +0100 Revert "WaE: unused variables" Hrm,

Re: [Libreoffice] Serious bug on LO Windows installer

2011-01-21 Thread Kevin Hunter
At 5:49am -0500 Fri, 21 Jan 2011, Michael Meeks wrote: Anyhow - if there is a lag, the solution to mail delivery problems is not (IMHO) forcing everyone to use yet-another awful web forum thing :-) FWIW, I 100% agree. This list archives all emails already, so they're already easily Googleable

Re: [Libreoffice] Serious bug on LO Windows installer

2011-01-21 Thread Kevin Hunter
At 6:22am -0500 Fri, 21 Jan 2011, Plino wrote: I did receive the email by Tor at the time. But I checked the Nabble site and my message was listed as pending until 1 AM, i.e 12 hours later... (and I have subscribed to this mailing list) No, your message came through the list to me just over 30

[Libreoffice] [PATCH] remove unused variables

2010-12-09 Thread Kevin Hunter
Hullo List, Simple patch to remove unused variables in: vcl/win/source/gdi/winlayout.cxx Cheers, Kevin 0001-Remove-unused-variables.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://

Re: [Libreoffice] Comments on RC1

2010-12-08 Thread Kevin Hunter
At 11:04am -0500 Wed, 08 Dec 2010, Plino wrote: I'm willing to report the bugs I find when a proper bug tracker is set up. Do you mean something other than what is currently available through bugs.freedesktop.org? https://bugs.freedesktop.org/buglist.cgi?bug_status=__open__&product=LibreOffi

Re: [Libreoffice] Comments on RC1

2010-12-08 Thread Kevin Hunter
At 4:20am -0500 Wed, 08 Dec 2010, Michael Meeks wrote: On Wed, 2010-12-08 at 10:04 +0100, Alexander Thurgood wrote: In countries where power supplies are intermittent, or irregular, it matters a great deal. If your phone or electricity lines crap out part way through the download, and you were o

Re: [Libreoffice] defaulting to --without-java ... (?)

2010-12-02 Thread Kevin Hunter
At 11:33am -0500 Thu, 02 Dec 2010, Michael Meeks wrote: As part of the quest to make LibreOffice easier to build; and in parallel to annoy developers who are missing those java implemented features into re-writing them into C++, I was wondering: would anyone scream if we defaulted configure to -

Re: [Libreoffice] [PATCH] minor updates to bootstrap/g

2010-12-01 Thread Kevin Hunter
At 10:37am -0500 Wed, 01 Dec 2010, Kevin Hunter wrote: Updated expressions in bootstrap/g so that it uses Bash internal expressions, rather than farming out to the '[' or 'test' external command. Updated deprecated backtick subshell calls to $( I've just learned

[Libreoffice] [PATCH] minor updates to bootstrap/g

2010-12-01 Thread Kevin Hunter
Hullo List, Updated expressions in bootstrap/g so that it uses Bash internal expressions, rather than farming out to the '[' or 'test' external command. Updated deprecated backtick subshell calls to $( Cheers, Kevin minor_g_updates.tar.xz Description: application/xz ___

Re: [Libreoffice] LO status bar annoyances

2010-11-30 Thread Kevin Hunter
At 9:54am -0500 Tue, 30 Nov 2010, Kohei Yoshida wrote: Sorry I have to disagree there. I'm the one who put that icon there, and the reason for that was to have a visually obvious way to tell whether or not the document is currently modified. A lot of people were using the save icon status for tha

[Libreoffice] Nominating bug 32002 as blocker for LibO-3.3.0 RC2

2010-11-30 Thread Kevin Hunter
Hullo List, Per Yi Fan Jiang's message 3 days ago, I'm nominating this bug for a blocker for RC2, after minimal discussion with Kohei and Michael via email and IRC. (Note: that's RC2, not RC1.) I don't know how to do that with the current version or this community/bug tracker, so I'm leavin

Re: [Libreoffice] quick starter applet/systray defaults and various confusion

2010-11-24 Thread Kevin Hunter
At 6:51am -0500 Wed, 24 Nov 2010, Andrew wrote: One other discussion I want to start is that do we actually need/want the quickstarter? From my own experience it is annoying and not needed - why should an office suite be in the system tray, it is not needed. I have only my memory as a young per

[Libreoffice] [PATCH] i18npool/ : minor memory leak

2010-11-22 Thread Kevin Hunter
Hullo List, Minor memory leak (but a leak nonetheless), found thanks to cppcheck and Jesse's appreciated webpage. Kevin 0001-Fix-a-memory-leak.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.

Re: [Libreoffice] Building problem, sc/source/ui/src/optdlg.src gives syntax error

2010-11-21 Thread Kevin Hunter
At 1:16am -0500 Mon, 22 Nov 2010, Joost Eekhoorn wrote: PROBLEM 2: Will have to let someone else respond to problem 1, but I believe problem 2 to be fairly simple to solve: The problem I had on the previous build: I had a good build and did an install, but the I could not run the program wi

Re: [Libreoffice] [PUSHED] Re: [PATCH 02/12] RTL_CONSTASCII_USTRINGPARAM in components cui options

2010-11-21 Thread Kevin Hunter
At 4:58pm -0500 Sun, 21 Nov 2010, Wols Lists wrote: On 18/11/10 13:36, Kevin Hunter wrote: As I assume you're using a regex, you might consider catching this by doing the search and replace in series. Here's an example: 1. Catch the 'OUString +?= ...createFromAscii...' c

Re: [Libreoffice] [PUSHED] RTL goodness against filters/

2010-11-21 Thread Kevin Hunter
At 3:42am -0500 Sun, 21 Nov 2010, David Tardon wrote: On Sat, Nov 20, 2010 at 10:17:11AM -0500, Kevin Hunter wrote: For the latter, (OUString() vs = OUString()), you were obviously able to compile? I originally had them exactly as you had them, but my compiler did not like them. And I

[Libreoffice] [PATCH] binfilter/ : #if 0 removals

2010-11-20 Thread Kevin Hunter
Hullo List, Some #if 0 removals in binfilter. Cheers, Kevin if0_removals.txz Description: application/xz-compressed-tar ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: [Libreoffice] newish to git: howto recover from bad merge?

2010-11-20 Thread Kevin Hunter
At 9:16am -0500 Sat, 20 Nov 2010, Wols Lists wrote: Firstly, I'm slightly surprised no-one suggested merely reverting your patch. But I'm guessing all you want to do is get rid of your patch and replace it with the "official" one - so just dropping your version should do what you want? This

Re: [Libreoffice] [PUSHED] RTL goodness against filters/

2010-11-20 Thread Kevin Hunter
At 2:22am -0500 Sat, 20 Nov 2010, David Tardon wrote: On Fri, Nov 19, 2010 at 03:04:52PM -0500, Kevin Hunter wrote: Some more RTL goodness against filters/. I corrected two obviously wrong changes: Thank you for checking those. I caught three of those, but missed those two. For the

Re: [Libreoffice] LibreOffice Beta 3

2010-11-19 Thread Kevin Hunter
At 6:54pm -0500 Fri, 19 Nov 2010, David Burleigh wrote: I am running LibreOffice Beta 3 under Ubuntu 10.10 (64-bit) and it seems to gradually bog down with use, so that I have to exit and restart it several times a day. It gets so that cursor movement is very slow. This was also a problem with Be

[Libreoffice] [PATCH] binfilter/ : remove dead code

2010-11-19 Thread Kevin Hunter
Hullo List, Removing some dead/non-compiled code in binfilter. Did some drive by comment translation, and minor tab removals. Cheers, Kevin 0001-EasyHacks-kill-dead-code-translate-formatting.patch.bz Description: application/bzip ___ LibreOffice

[Libreoffice] [PATCH] RTL against comphelper

2010-11-19 Thread Kevin Hunter
Hullo List, Here's a quick RTL patch against comphelper/ . Hit some tests while there as well. Kevin 0001-EasyHack-RTL-conversion-from-createFromAscii.patch.xz Description: application/xz ___ LibreOffice mailing list LibreOffice@lists.freedesktop.

[Libreoffice] RTL goodness against filters/

2010-11-19 Thread Kevin Hunter
Hullo List, Some more RTL goodness against filters/. Cheers, Kevin 0001-EasyHack-RTL-conversion-from-createFromAscii.patch.bz Description: application/bzip ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/m

Re: [Libreoffice] Presenter Console

2010-11-19 Thread Kevin Hunter
At 1:19pm -0500 Fri, 19 Nov 2010, Andrew wrote: Could you give me your opinion, as to which is best? 1st - As it currently is 2nd - Smaller font, no use of bold, 'filled' icons 3rd - Smaller font, no use of bold, 'line drawing' icons I like the icons from 1, and the lighter colors. However, t

[Libreoffice] RTL easy hack against bridges/

2010-11-19 Thread Kevin Hunter
Hullo List, A simple one against but test cases, but, as I said in the commit message, they were in my (grep) road! Kevin 0001-EasyHack-RTL_CONST-macro-from-createFromAscii.patch.xz Description: application/xz ___ LibreOffice mailing list LibreOffi

Re: [Libreoffice] newish to git: howto recover from bad merge?

2010-11-19 Thread Kevin Hunter
At 7:23am -0500 Fri, 19 Nov 2010, Michael Meeks wrote: Yes - I too fall over this dumb thing every time as well; you cannot 'git add' and 'git commit' the file if it is identical to the original :-) Sometimes I cheat by doing some trivial whitespace change (which is no doubt evil ;-). I -believe-

Re: [Libreoffice] setting ulimit before running soffice

2010-11-19 Thread Kevin Hunter
At 7:59am -0500 Fri, 19 Nov 2010, Michael Meeks wrote: On Wed, 2010-11-17 at 10:57 -0500, Kevin Hunter wrote: What's the story with the ulimit set in 'ooenv' right before running a freshly built LO: As Caolan says - without this, your app will simply not dump core. Of course

Re: [Libreoffice] [PUSHED] Re: EasyHack: svtools/ RTL macro conversion

2010-11-19 Thread Kevin Hunter
At 4:59am -0500 Fri, 19 Nov 2010, Caolán Mcnamara wrote: On Thu, 2010-11-18 at 18:50 -0500, Kevin Hunter wrote: An easy hack for RTL conversion strings, against svtools/ . Excellent, looks good. Pushed this. I simplified the syntax of a few of the constructor here and there on the way. Och

[Libreoffice] newish to git: howto recover from bad merge?

2010-11-19 Thread Kevin Hunter
Hullo List, It must be something simple, but I'm having a devil of a time recovering from a bad merge. Given my transcript below, how do I recover? It usually happens after I've committed a change to my local repository, that I then sent in as a patch. That patch got applied with a slight

[Libreoffice] make help typo fix

2010-11-18 Thread Kevin Hunter
Hullo List, My girlfriend sat down as I was finishing some code reading, and noted from my adjacent terminal window that, "For a detail-oriented computer person, you sure can't spell." Patch attached. Kevin 0001-Spelling-error-fix.patch.gz Description: GNU Zip compressed data ___

[Libreoffice] EasyHack: svtools/ RTL macro conversion

2010-11-18 Thread Kevin Hunter
Hullo List, An easy hack for RTL conversion strings, against svtools/ . Cheers, Kevin 0001-EasyHack-RTL_CONST-macro-from-createFromAscii.patch.bz Description: application/bzip ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lis

[Libreoffice] Easy hack: removed commented-out code

2010-11-18 Thread Kevin Hunter
Hullo List, Another easy hack of cluttering comments removal. Kevin 0001-Remove-some-commented-out-code-we-have-Git.patch.xz Description: application/xz ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailm

[Libreoffice] RTL easy hack, look over please

2010-11-18 Thread Kevin Hunter
Hi List, Here's an RTL easy hack, that affects a macro. I believe it okay because it affects strings created like this: string = "prefix" "Something else"; but through a macro. Please look over. Cheers, Kevin 0001-EasyHack-RTL_CONST-macro-from-createFromAscii.patch.gz Description: GNU Z

[Libreoffice] tools/ RTL easy hack

2010-11-18 Thread Kevin Hunter
Hiya List, Here's an RTL easy hack for tools/ . Kevin 0001-Easy-Hack-RTL_CONST-macro-from-createFromAscii.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailma

Re: [Libreoffice] binfilter RTL easy hack

2010-11-18 Thread Kevin Hunter
At 3:18pm -0500 Thu, 18 Nov 2010, Caolán Mcnamara wrote: As an aside, for the empty OUString::createFromAscii("") case its probably best just to swap with OUString(), so I did that for the two cases. Doh! Totally forgot about those. I even /searched/ for, and found 'em, but got distracted at

Re: [Libreoffice] setting ulimit before running soffice

2010-11-18 Thread Kevin Hunter
At 3:49am -0500 Thu, 18 Nov 2010, Sebastian Spaeth wrote: On Wed, 17 Nov 2010 14:01:18 -0500, Kevin Hunter wrote: I suppose it's an Ubuntu thing then. I've used ulimit files minimally in my career thus far. I suppose I'll get some practice this go round ... mmh, works fine i

[Libreoffice] binfilter RTL easy hack

2010-11-18 Thread Kevin Hunter
Hullo List, This rather large commit should take care of all non-commented versions of the RTL_CONST macro easy hack in binfilter/ . Cheers, Kevin 0001-EasyHack-RTL-macro-from-createFromAscii.patch.bz Description: application/bzip ___ LibreOffice

Re: [Libreoffice] [PUSHED] Re: [PATCH 02/12] RTL_CONSTASCII_USTRINGPARAM in components cui options

2010-11-18 Thread Kevin Hunter
As I assume you're using a regex, you might consider catching this by doing the search and replace in series. Here's an example: 1. Catch the 'OUString +?= ...createFromAscii...' case and replace with 'OUString var( RTL...)' search: OUString\s*\w+\s*\+?=\s*\S*createFromAscii\(\s*"([^"]*)"\s*

[Libreoffice] What are these /*N*/ comments?

2010-11-17 Thread Kevin Hunter
Hullo List, Is there a reason for lines that look like this? [...] /*N*/ String aGraphicId( rGraphicId ); /*N*/ BfGraphicObject aGrfObject( ByteString( aGraphicId, RTL_TEXTENCODING_ASCII_US ) ); /*N*/ /*N*/ maTmp.EnableKillingFile(); /*N*/ /*N*/ if( aGrfObject.GetType

Re: [Libreoffice] Questions about Timers

2010-11-17 Thread Kevin Hunter
At 5:13pm -0500 Wed, 17 Nov 2010, Julien Nabet wrote: PS : in the easy hack, "for RTL_CONSTASCII_USTRINGPARAM macro", wouldn't it be better to change the "grep" in "fgrep" in order to make the searching faster ? That might have marginally been an issue once upon a time, but now, they're likely

[Libreoffice] RTL_CONST patch: binfilter

2010-11-17 Thread Kevin Hunter
Hullo List, A quick two-line patch against binfilter. Kevin 0001-EasyHack-RTL_CONST-from-createFromAscii.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman

Re: [Libreoffice] setting ulimit before running soffice

2010-11-17 Thread Kevin Hunter
At 11:07am -0500 Wed, 17 Nov 2010, Caolán McNamara wrote: Am I the only one seeing this error? If yes, then does this imply that others are running as root? Nah, I don't run as root ulimit -c unlimited works fine. I'd guess that there some hard limits set that ordinary users aren't allowed to

[Libreoffice] setting ulimit before running soffice

2010-11-17 Thread Kevin Hunter
Hullo List, What's the story with the ulimit set in 'ooenv' right before running a freshly built LO: $ cd install/program/ $ ./soffice ulimit: 5: error setting limit (Operation not permitted) [LO running] $ Am I the only one seeing this error? If yes, then does this imply that others ar

Re: [Libreoffice] Calc usability improvements

2010-11-15 Thread Kevin Hunter
At 9:47am -0500 Mon, 15 Nov 2010, Kohei Yoshida wrote: On Thu, 2010-11-11 at 17:21 -0800, Patrick Bakker wrote: COPY& PASTE TO A CELL WITH AN EXISTING VALUE The first time I copy and pasted a cell formula into another cell which already had something in it a dialog came up asking something lik

Re: [Libreoffice] Calc usability improvements

2010-11-13 Thread Kevin Hunter
At 7:57am -0500 Fri, 12 Nov 2010, Kevin Hunter wrote: At 5:32am -0500 Fri, 12 Nov 2010, Michael Meeks wrote: I wonder if switching the polarity of the check-box - so it is checked might help people 'see' it, and thus un-check it to get rid of it (some Mozilla dialogs do th

Re: [Libreoffice] Calc usability improvements

2010-11-12 Thread Kevin Hunter
At 5:32am -0500 Fri, 12 Nov 2010, Michael Meeks wrote: Might be a good easy-hack; how we tell the user in an unobtrusive way that this has happened, I don't know - some good UI ideas there appreciated; the 'status bar' is not such a great plan I suspect for this. "alpha transparent, hovering noti

Re: [Libreoffice] Calc usability improvements

2010-11-12 Thread Kevin Hunter
At 5:32am -0500 Fri, 12 Nov 2010, Michael Meeks wrote: On Thu, 2010-11-11 at 23:30 -0800, Patrick Bakker wrote: DELETE CELL "HELPER" The delete cell "helper" dialog box pops up anytime I try to delete a cell or cell selection. It gives me options to delete some And this is deadly annoying too

Re: [Libreoffice] Calc usability improvements

2010-11-12 Thread Kevin Hunter
At 5:32am -0500 Fri, 12 Nov 2010, Michael Meeks wrote: On Thu, 2010-11-11 at 23:30 -0800, Patrick Bakker wrote: SEMI-COLON INSTEAD OF COMMA AS FUNCTION ARGUMENT SEPARATOR Kohei (or was it Jody) fixed this many moons ago; I believe the default is set to improve usability here in LibreOffice; I

Re: [Libreoffice] Calc usability improvements

2010-11-11 Thread Kevin Hunter
At 8:21pm -0500 Thu, 11 Nov 2010, Patrick Bakker wrote: SEMI-COLON INSTEAD OF COMMA AS FUNCTION ARGUMENT SEPARATOR Current Calc behaviour: =subtotal(9;a1:a5) Desired behaviour: =subtotal(9,a1:a5) I believe OpenOffice has supported both semicolon and comma since at least 3.0. Take a look at

Re: [Libreoffice] Canonical has a vacancy for a LibO specialist software engineer

2010-11-11 Thread Kevin Hunter
At 6:04am -0500 Thu, 11 Nov 2010, Caolán McNamara wrote: On Thu, 2010-11-11 at 11:23 +0100, Rene Engelhard wrote: On Thu, Nov 11, 2010 at 05:55:44PM +0800, David Nelson wrote: I'm just giving you a heads-up because I was contacted by Jason Warner of Canonical ([1]jason.war...@canonical.com and

Re: [Libreoffice] [PATCH] Renaming extension options consistently

2010-11-10 Thread Kevin Hunter
At 2:05am -0500 Wed, 10 Nov 2010, Sebastian Spaeth wrote: +1 for quiet down the icecream advertisment a bit, we should rather put instructions for that in our wiki. If someone configured to use distcc, we should not output icecream related stuff at all. So who comes up with a patch :-)? For the

Re: [Libreoffice] [PATCH] Renaming extension options consistently

2010-11-10 Thread Kevin Hunter
At 2:05am -0500 Wed, 10 Nov 2010, Sebastian Spaeth wrote: +1 for quiet down the icecream advertisment a bit, we should rather put instructions for that in our wiki. If someone configured to use distcc, we should not output icecream related stuff at all. So who comes up with a patch :-)? My only

Re: [Libreoffice] 4 patches of rtl goodness

2010-11-09 Thread Kevin Hunter
At 12:44pm -0500 Tue, 09 Nov 2010, Kevin Hunter wrote: Here are four more patch conversions from createFromAscii to RTL_CONST... applied against: basebmp/ binfilter/ bridges/ connectivity/ I apologize, I temporarily forgot about the automatic whitespace handling and flat committed those

[Libreoffice] 4 patches of rtl goodness

2010-11-09 Thread Kevin Hunter
Hullo List, Here are four more patch conversions from createFromAscii to RTL_CONST... applied against: basebmp/ binfilter/ bridges/ connectivity/ Cheers, Kevin rtl_easy_hack.tbz Description: application/bzip-compressed-tar ___ LibreOffice mailing

Re: [Libreoffice] [PUSHED] easy hacks, commented code removal

2010-11-09 Thread Kevin Hunter
At 4:03am -0500 Tue, 09 Nov 2010, Sebastian Spaeth wrote: Please make sure to not remove the newlines after the last vi modeline. There were a few of that that I had to fix. Ah, of course. That's my editor doing an automatic job. I'll update the settings for this project. Thanks, mate. Ke

[Libreoffice] RTL patches for canvas and chart2

2010-11-08 Thread Kevin Hunter
Hello again list, My last contribution of the day, with two RTL patches for canvas/ and chart2/ . Cheers, Kevin canvas_rtl_easy_hack.tbz Description: application/bzip-compressed-tar chart2_rtl_easy_hack.tbz Description: application/bzip-compressed-tar _

[Libreoffice] More easy hack RTL goodness

2010-11-08 Thread Kevin Hunter
Hullo again, Some more easy hack RTL code. bridges/ Kevin bridges_rtl_easy_hack.tbz Description: application/bzip-compressed-tar ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: [Libreoffice] [PUSHED] Re: large swathes of commented/#if 0 code removed

2010-11-08 Thread Kevin Hunter
At 4:23pm -0500 Mon, 08 Nov 2010, Caolán McNamara wrote: Pushed the substantial hacking out of the commented-out code in automation. Thanks. I'm holding back on the end of line whitespace stuff because all of our files have it, at least in line 4 :-). Maybe we can resolve all of those in one fell

Re: [Libreoffice] [PUSHED, partial] Re: more comment removal, rtl easy hack

2010-11-08 Thread Kevin Hunter
At 4:06pm -0500 Mon, 08 Nov 2010, Caolán McNamara wrote: I only pushed a few hunks of the comment removal stuff though. I'm no fan of the line separators or particularly in love with the commenting format, but there is potentially useful info in having the service name that each block implem

[Libreoffice] easyhack: remove blocks of commented code

2010-11-08 Thread Kevin Hunter
Hi List, A patch to remove large blocks of already commented code. basic/ Cheers, Kevin basic_commented_removed.tgz Description: application/compressed-tar ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/

[Libreoffice] easy hack, rtl against basebmp/

2010-11-08 Thread Kevin Hunter
Hi List, Here's an RTL patch against basebmp/ . Kevin basebmp_rtl_easy_hack.tgz Description: application/compressed-tar ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice] accessibility easy hack, RTL

2010-11-08 Thread Kevin Hunter
Hullo List, Another RTL_CONST patch, also against accessibility/ . Cheers, Kevin 0001-EasyHack-createAsciiFrom-RTL_CONST.patch.bz2 Description: application/bzip ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.

[Libreoffice] easy hacks, commented code removal

2010-11-08 Thread Kevin Hunter
Hello List, Here's another set of patches. Caolán, I think I've done a little better on the comments this time, but probably not yet perfect. accessibility/ Cheers, Kevin comment_removals.tbz Description: application/bzip-compressed-tar ___ Libr

Re: [Libreoffice] simple comment removal

2010-11-08 Thread Kevin Hunter
At 11:46am -0500 Mon, 08 Nov 2010, Caolán McNamara wrote: Hum, the comments like... [ good comments ] [ aren't in the same category as ] /*->start removed 2010.10.10 <-end removed 2010.10.10*/ Noted. I'm just learning the ropes of what's important in this code base. I tend to think t

[Libreoffice] one final (for tonight) rtl patch

2010-11-07 Thread Kevin Hunter
Hullo Committers, One more RTL easy hack commit against: automation/ Cheers, Kevin 0001-EasyHack-RTL-macro-conversion-createFromAscii.patch.gz Description: GNU Zip compressed data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http:

Re: [Libreoffice] large swathes of commented/#if 0 code removed

2010-11-07 Thread Kevin Hunter
At 2:17am -0500 Mon, 08 Nov 2010, Kevin Hunter wrote: Subject says it all. Patch against three files under automation/source/ Doh! Helps to actually /attach/ the file. Kevin large_swathes_gone.tbz Description: application/bzip-compressed-tar

[Libreoffice] large swathes of commented/#if 0 code removed

2010-11-07 Thread Kevin Hunter
Hullo Committers, Subject says it all. Patch against three files under automation/source/ Builds successfully here. Cheers, Kevin ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffi

<    1   2   3   >