[dev] Incorrect spaces display in Writer (i20878)

2011-02-10 Thread Bartosz
/Left_NPC_n_spaces.png For this problem the issue was written: http://www.openoffice.org/issues/show_bug.cgi?id=20878 I'm wondering where is the function in which displaying is implemented? I think this function need to be updated, to proper split the spaces within multiple lines. Best Regards Ba

[dev] Remove Hyperlink bar

2011-01-19 Thread Bartosz
Hi. What do you think about remove Hyperlink bar? I think it is useless and it could be fully replaced by HyperLink button. Hyperlink Bar is implemented in the SvxHyperlinkDlg class. Best Regards Bartosz - To unsubscribe, e

[dev] Performance: Loading a large plain data file takes very long - solution proposal

2010-12-04 Thread Bartosz
Hi. Loading a large plain data file takes very long. This problem was described at: http://wiki.services.openoffice.org/wiki/Calc/Performance/The_Ou_case Look at file: http://svn.services.openoffice.org/opengrok/xref/DEV300_m94/sc/source/filter/xml/xmlsubti.cxx 38% of time spent in ScMyTables::Ne

[dev] Improve MS Office Calc compatibility - easy2fix patch

2010-11-03 Thread Bartosz
. There is already submitted issue: http://www.openoffice.org/issues/show_bug.cgi?id=35901 I checked it and it could be done without problems (All variables are defined as SCTAB or "long" type). It is easy2fix issue. What do you think about this idea? Best Regar

[dev] Replace tools/datetime.hxx with Boost. Date_Time

2010-10-27 Thread Bartosz
Bartosz - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

[dev] Tools Container - replace to STL

2010-10-26 Thread Bartosz
Hi. In TODO available at webpage: http://wiki.services.openoffice.org/wiki/To-Dos#Replace_code_with_3rd_party There is an task to replace "Tools Container" with STL. What is "Tools Container", for what is used? Where is located the source code of this container

[dev] Help in translation comments of SfxItemPool

2010-10-16 Thread Bartosz
nd I think good understanding is crucial for future development. Thanks in advance Bartosz - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

[dev] UniString removal

2010-09-18 Thread Bartosz
replace some of them with "string" or "wstring" (basic_string) from Strings library? http://www.cplusplus.com/reference/string/string/ Is there any issue created for that? What is your opinion? Best Regards Bartosz

[dev] openoffice building problem

2010-09-03 Thread Bartosz Kosiorek
Hi. I have strange build problem with DEV300m87. Previous revision (DEV300m85) was built without problems, but now at the end of compilation I have error after type of command: source LinuxX86Env.Set.sh && ./bootstrap && cd instsetoo_native && build --all At the end of compilation I have follow

[dev] openoffice building problem

2010-09-02 Thread Bartosz
Hi. I have strange build problem with DEV300m87. Previous revision (DEV300m85) was built without problems, but now at the end of compilation I have error after type of command: source LinuxX86Env.Set.sh && ./bootstrap && cd instsetoo_native && build --all At the end of compilation I have follow

[dev] svarray replace by STL - patch

2010-07-30 Thread Bartosz
Hi. I have created patch, which replace SV_DECL_PTRARR with std::vector. It is first step to resolve old bug: http://www.openoffice.org/issues/show_bug.cgi?id=84159 Unfortunately this patch is not works correctly. After compile/run OpenOffice the application freeze. I do something wrog, but I ca

Re: [dev] changing source

2010-07-03 Thread Bartosz
/Documentation/Building_Guide/Building_on_Linux and http://wiki.services.openoffice.org/wiki/Category:Distribution-Specific_Build_Instructions ? Best Regards Bartosz 2010/7/3 mohammed safeer : > hi, > I builded OOO320_m19. > i got the tarballs.i extracted it and run it. > now i need to change

Re: [dev] Problem with CWS configuration

2010-07-01 Thread Bartosz
uot;. The command: cws create --hg DEV300 foo42 mean that it should use mercurial (--hg parameter). Why it ask me about CVS login/password. If the CVS login/password is required to Mercurial connect, how I could get it? Could you please send some example of the .cwsrc file? Be

[dev] Problem with CWS configuration

2010-07-01 Thread Bartosz
but it is outdated :-( It setup the CVS, not mercurial. http://wiki.services.openoffice.org/wiki/CWS How I should setup the .cwsrc file? Maybe someone have proper an example of the $HOME/.cwsrc file? Best Regards Bartosz -

Re: [dev] "FASTBOOL macro" vs "bool" - decrease memory usage

2010-06-24 Thread Bartosz
see: http://cboard.cprogramming.com/cplusplus-programming/119320-bool-vs-int-faster.html Regards Bartosz - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

[dev] "FASTBOOL macro" vs "bool" - decrease memory usage

2010-06-24 Thread Bartosz
to them. What do you think about this idea? Best Regards Bartosz - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

Re: [dev] Re: BigPointerArray, SvPointerArray vs STL containers

2010-06-17 Thread Bartosz
2010/6/16 Eike Rathke wrote: > Hi Bartosz, > > On Tuesday, 2010-06-15 09:06:19 +0200, Bartosz wrote: > >> After replace svArrays by STL containers, in some cases I observed boost of >> performance. >> >> For example: >> for (USHORT i = 0; i <

Re: [dev] Re: BigPointerArray, SvPointerArray vs STL containers

2010-06-16 Thread Bartosz
n.services.openoffice.org/opengrok/xref/DEV300_m82/svl/source/items/itempool.cxx I found SV_IMPL_PTRARR( SfxPoolVersionArr_Impl, SfxPoolVersion_Impl* ); declaration. Does this SvArray couse this trouble? I would like prepare patch which

Re: [dev] Re: BigPointerArray, SvPointerArray vs STL containers

2010-06-15 Thread Bartosz
> Getting rid of SvArray might not be enough alone to fix this, but it > would be a big step in the right direction. Please also have a look at > the work in cws new_itemsets which tries to get rid of the old > SfxItemSet implementation and replace it with stl container-based stuff > whereever poss

[dev] patch: replace SVARRAY to STL containers

2010-06-14 Thread Bartosz
Hi. I have created patch which replace svarray to stl containers. Patch is in attachment in issue: http://www.openoffice.org/issues/show_bug.cgi?id=112395 Feel free to test it. How I could test the highlight? Best Regards Bartosz

Re: [dev] Re: BigPointerArray, SvPointerArray vs STL containers

2010-06-14 Thread Bartosz
bit harder to implement, and it will be difficult to add some new features to all new arrays. Best Regards Bartosz - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

[dev] BigPointerArray, SvPointerArray vs STL containers

2010-06-14 Thread Bartosz Kosiorek
rray" So should we replace this arrays with "STL containers" or merge SvPointerArray and BigPointerArray? On which container we could replace this obsolete arrays? What is your opinion? Best Regards Bartosz ---

[dev] Solution for improper display numbers in rulers (Issue 84723)

2010-06-10 Thread Bartosz Kosiorek
is a little bit faster. Best Regards Bartosz - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

[dev] Solution for improper display numbers in rulers (Issue 84723)

2010-06-10 Thread Bartosz
Hi. Please check this patch: http://www.openoffice.org/issues/show_bug.cgi?id=84723 I tested it on Ubuntu 10.04 and latest Openoffice snapshot. For me it works perfectly. Also displaying the rulers now it is a bit faster. Best Regards Bartosz

[dev] Openoffice development

2010-06-08 Thread Bartosz
Hi. My name is Bartosz. I'm quite experienced C/C++ developer, and I would like to start help in OpenOffice development. Currently I'm building the OpenOffice DEV300 under Ubuntu ( http://wiki.services.openoffice.org/wiki/Documentation/Building_Guide/Building_on_Linux ). I would like t

Re: [dev] commercial use of oo api (license issue)

2007-09-18 Thread Bartosz Sokolowski
re are released also under LGPL? I'm asking because some parts of OO have different Third Party Licenses. Thanks for your advices. Bartek -- Bartosz Sokolowski, [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTE

[dev] commercial use of oo api (license issue)

2007-09-18 Thread Bartosz Sokolowski
license? Under what license are those 5 jars released. If it's LGPL, does it mean that I must publish the part of the my code that accesses those jars? What else do I need to be aware of? Thanks for help. Bartek -- Bartosz Sokolowski, [EMAIL PROTECTED]