[xml-issues] [Issue 84965] m241: link problem with gc c-4.2.1

2008-04-05 Thread jcb62281
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84965





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 06:17:19 + 
2008 ---
I'm having a similar problem on LinuxFromScratch with gcc 4.1.2 and the system
STL.  The compiler fails configure's tests, removing -fvisibility-inlines-hidden
results in the following one-line change in the assembler output:

--- conftest.s  2008-04-05 00:32:07.0 -0500
+++ conftest.s.pass 2008-04-05 00:30:53.0 -0500
@@ -46,7 +46,7 @@
movq%rbx, %rsi
movq%rsp, %rdi
 .LEHB1:
-   call   
_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode
+   call   
[EMAIL PROTECTED]
 .LEHE1:
 .L7:
 .L8:

Apparently, on amd64, calls within a shared object MUST be indirected through
the PLT.  Attempting to avoid doing so results in a PC-relative relocation being
required, but amd64 forbids the use of such relocations in shared objects
(position independence is enforced, absolutely).

Using STLport might get around this, but only at the cost of *duplicating the
STL code in each module that needs it* (which surely wastes more space than the
long symbol names in the PLT).

Really, GCC should either give an error or just ignore
-fvisibility-inlines-hidden in the case of building a shared object on amd64. 
It doesn't--GCC appears to trust that you know what you're doing, even when
you're asking for code to be compiled in a way such that linking will be 
impossible.

I'm not sure if this issue also extends to -fvisibility=hidden in the general
case or not (I hope not--the control it provides is over exported symbols sounds
very nice).


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[xml-issues] [Issue 84965] m241: link problem with gc c-4.2.1

2008-04-05 Thread jcb62281
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84965


User jcb62281 changed the following:

What|Old value |New value

  CC|'cmc,hr,hub,kendy'|'cmc,hr,hub,jcb62281,kendy
|  |'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[xml-issues] [Issue 84965] m241: link problem with gc c-4.2.1

2008-04-05 Thread jcb62281
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84965





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 06:51:35 + 
2008 ---
I've thought about this a bit more and I think I may know what's going wrong,
and why my GCC and system STL fail configure's test.

Apparently, on AMD64 you can safely hide anything that is defined in the same
shared object where it is used (so -fvisibility=hidden shouldn't break anything;
the keyword here is shouldn't--any symbol that does somehow get referenced
externally will break linking and will need to be exported).  But any and all
references between shared objects *MUST* go through the PLT.  (This allows the
aggressive address space randomization that amd64 Linux does to work.  The same
shared object will be mapped at different addresses in different processes. 
Thus, any relocation that is supposed to reference another shared object is
guaranteed to break as soon as two processes share the same SO.  So all
cross-loadable-module references must go through the PLT.)

-fvisibility-inlines-hidden in the case of configure's test results in the
object trying to hide an internal reference to ios_base::openmode that the
inlined constructor for istringstream uses.  This symbol lives in the C++
runtime library (a separate shared object), thus it can be referenced *ONLY*
through the PLT.  But -fvisibility-inlines-hidden asks GCC to reference it
directly.  GCC foolishly obliges and linking fails because you can't do that.

At this time, I think the only real solution to this is to build without
-fvisibility-inlines-hidden on amd64 and simply take the increased binary size
as a cost of the platform ABI and the platform's security features.

(One of the points of ASLR is to make it impossible to call cross-module without
the dynamic loader's help, which exploit code won't have.  (The loader is also
mapped at a random address in each process, so an attacker can't just call into
it either.)  So, to gain some extra protection from buffer overflows, neat
tricks that require SO's to reference each other directly are forbidden.  We
can argue this choice all day, but it's already been made, and we're stuck with
it on amd64.)

(Extra note:  I encountered this trying to build the 2.4.0 release.)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 86811] WW8: arabic numbers instea d of decimal numbers

2008-04-05 Thread hennerdrewes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86811





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 06:59:57 + 
2008 ---
The spec at
http://wiki.services.openoffice.org/wiki/Import_of_Hindi_numbers_from_Microsoft_Word_documents
states that the conversion to Hindi numbers should be dependent on a setting
called RegardHindiDigits, which defaults to false. The implementation in
ww8par.cxx, however, does not relate to any such setting. The conversion is
performed on any CTL text.

Also, as said before, a translation to Hindi numbers should be language
dependent, not CTL dependent. 

But most seriously: The entire approach of handling the digit conversion does
not match the inner handling of digts in OOo, and as such must lead to trouble.
If you open an Arabic language word document, and you system settings are set
Show Hindi numbers, writer would have shown Hindi numbers in OOo 2.3.1 and
before. 

If you want to display in Hindi numbers in OOo, you have to set the display
settings to Show Hindi numbers. Within the the document, the numbers are
treated as 0x0030 .. 0x0039 values and not as 0x0660 .. 0x0669. Digits are
stored logically as digits, and that's it. And there is an options of displaying
in several shapes. 

As such, I suggest to revert the changes to ww8par.cxx to the pre-2.4 state. 

The remaining issue is not an issue of MS Word import. It is an issue that the
OOo handling of digits could be enhanced. In addition to the three existing
settings (system, Arabic, Hindi), there should be a language dependent one. If a
numeral appears e.g. in a Arabic context, the text display would be done with
Hindi numbers. This would give much more flexibility in number display, as it
would be more document dependent and not only system setting dependent. vcl
offers all the possibilities to SetDigitLanguage in many ways. There should a
(not to complicated) way to connect text language to the digit language.




-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 86811] WW8: arabic numbers instea d of decimal numbers

2008-04-05 Thread hennerdrewes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86811


User hennerdrewes changed the following:

What|Old value |New value

  CC|'adebr,hdu,kaplan,lmamane,|'adebr,hdu,hennerdrewes,ka
|mba,psychoi3oy,rene,st,yha|plan,lmamane,mba,psychoi3o
|ger'  |y,rene,st,yhager'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 86811] WW8: arabic numbers instea d of decimal numbers

2008-04-05 Thread hennerdrewes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86811





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 07:11:48 + 
2008 ---
Although it seems a little ridiculous to post a patch for this one, I'll attach
a fix. It removes the changes introduced for OO 2.4. Maybe like this we can
speed things up...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 86811] WW8: arabic numbers instea d of decimal numbers

2008-04-05 Thread hennerdrewes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86811





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 07:16:35 + 
2008 ---
Created an attachment (id=52563)
revert file sw/source/filter/ww8/ww8par.cxx to its previous version


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 87885] Comma-separated values imp ort under LANG=da_DK.UTF-8 converts incorrectl y

2008-04-05 Thread thing
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87885


User thing changed the following:

What|Old value |New value

  CC|''|'thing'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87904] Viewing issue with text in issue 60185 test case

2008-04-05 Thread rbsoffe
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87904
 Issue #|87904
 Summary|Viewing issue with text in issue 60185 test case
   Component|Word processor
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|viewing
 Assigned to|mru
 Reported by|rbsoffe





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 07:19:02 + 
2008 ---
Issue 60185 was closed by the development team, but has yet to be adequately 
resolved to the satisfaction of the user.

http://www.openoffice.org/issues/show_bug.cgi?id=60185

When viewing the test case uploaded with issue 60185 on-screen, the quality of 
the text in the graphics is so poor (heavily pixelated) that the text cannot be 
read on screen.

However, when exported to PDF from OOo 2.4, and then opened in Adobe Reader, 
the text is correctly displayed.

Compare and contrast the viewing result obtained with MS Word, where the test 
case is displayed on-screen correctly.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 4366] Font problems after the 2en d start - Bold and Normal Fonts

2008-04-05 Thread martinkubiak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=4366


User martinkubiak changed the following:

What|Old value |New value

  CC|',arthur,cp,jur,mdekkers,m|',arthur,cp,jur,martinkubi
|h,pl,rmano,st,thorgal,toom|ak,mdekkers,mh,pl,rmano,st
|,us,vd'   |,thorgal,toom,us,vd'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 4366] Font problems after the 2en d start - Bold and Normal Fonts

2008-04-05 Thread martinkubiak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=4366


User martinkubiak changed the following:

What|Old value |New value

  CC|',arthur,cp,jur,martinkubi|',arthur,cp,jur,mdekkers,m
|ak,mdekkers,mh,pl,rmano,st|h,pl,rmano,st,thorgal,toom
|,thorgal,toom,us,vd'  |,us,vd'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 86262] Tableborder distance canno t be set to a table via API

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86262


User mru changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 08:34:31 + 
2008 ---
Verified in CWS xmlfilter04.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 87905] cairocanvas / Mac OS X - t ext is not visible

2008-04-05 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87905
 Issue #|87905
 Summary|cairocanvas / Mac OS X - text is not visible
   Component|porting
 Version|OOo 2.3.1
Platform|Macintosh
 URL|
  OS/Version|Mac OS X
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|MacOSX
 Assigned to|thb
 Reported by|mox





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 08:36:06 + 
2008 ---
With the DEV300_m6 the canvas module now has a cairo backend for Mac OS X too.
It works ok, with the exception of text, which does get rendered without errors,
but is not visible.

My only lead to this is that while the correct SalGraphics object is passed to
ATSLayout::DrawText() in vcl/aqua/source/gdi/salatslayout.cxx, the actual
CGContext inside it is DIFFERENT than what was originally used in the virtual
device in canvas/source/cairo/cairo_canvashelper_text.cxx
(Surface::createVirtualDevice() in canvas/source/cairo/cairo_cairo.cxx). 

In comparison, the CGContext is the SAME when using VCLCanvas.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 87905] cairocanvas / Mac OS X - t ext is not visible

2008-04-05 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87905





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 08:40:02 + 
2008 ---
Created an attachment (id=52564)
Working canvasdemo.cxx for testing (ported from canvas05)


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 86953] Create redlines via UNO AP I

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86953


User mru changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 08:42:02 + 
2008 ---
Verified in CWS xmlfilter04.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87906] Java Run Time Environment 1.6.0_04 defective

2008-04-05 Thread mhrichter
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87906
 Issue #|87906
 Summary|Java Run Time Environment 1.6.0_04 defective
   Component|framework
 Version|OOo 2.4.0
Platform|Opteron/x86_64
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|tm
 Reported by|mhrichter





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 08:52:56 + 
2008 ---
The JRE that shipped with OOo 2.4.0 gets errors saying that it is defective and
won't run properly.

To reproduce, install and then try to create labels.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 87905] cairocanvas / Mac OS X - t ext is not visible

2008-04-05 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87905


User mox changed the following:

What|Old value |New value

  CC|'pl'  |'hdu,pl'





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 08:53:51 + 
2008 ---
The process for text drawing is very complex, here's a rough overview:

canvas cairo_canvashelper_text.cxx -- CanvasHelper::drawText()
== canvas cairo_cairo.cxx -- Surface::createVirtualDevice()
...
vcloutdev3.cxx -- DrawText()
...
== SalLayout* pSalLayout = ImplLayout()
== ImplGetGraphics()
== SalGraphics* AquaSalVirtualDevice::GetGraphics()
== pSalLayout = mpGraphics-GetTextLayout( aLayoutArgs, 0 );
== new ATSLayout( maATSUStyle, mfFontScale );
...
== ImplDrawText( *pSalLayout );
== ImplDrawTextDirect( rSalLayout, mbTextLines );
== rSalLayout.DrawText( *mpGraphics );
== ATSLayout::DrawText( SalGraphics rGraphics )


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87517] Toolbar missing

2008-04-05 Thread jolatt
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87517





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 09:03:25 + 
2008 ---
Why that?
I don't hold with that.

IMO this is an extension. Try to get it from somewhere and install it.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 87907] Inclusion of language Orom o in the Locale Setting dialog box

2008-04-05 Thread kenna
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87907
 Issue #|87907
 Summary|Inclusion of language Oromo in the Locale Setting dial
|og box
   Component|l10n
 Version|OOo 2.2
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|code
 Assigned to|pjanik
 Reported by|kenna





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 09:54:52 + 
2008 ---
Can anyone please include Oromo language in Local Setting dialog box? I'm
starting to work with localization to Oromo. Thank you

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87908] Number format changed in T emplates

2008-04-05 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87908
 Issue #|87908
 Summary|Number format changed in Templates
   Component|Word processor
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|formatting
 Assigned to|mru
 Reported by|mechtilde





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 09:57:17 + 
2008 ---
I use a template created in Feb 07 with developer version for 2.2.0

There is a table. One column is defined as Number -default (Zahl -Standard)
this works till 2.4 but not in 3.0.

In 3.0 this is Text

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87908] Number format changed in T emplates

2008-04-05 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87908


User mechtilde changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |87736
  is|  |

Keywords|  |oooqa, regression, release
|  |_blocker





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87736] track potential OOo 3.0 Be ta blockers

2008-04-05 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87736


User mechtilde changed the following:

What|Old value |New value

 IssuesThisDependsOn|87116,87197,87320,87588,87|87116,87197,87320,87588,87
|748,87804,87890   |748,87804,87890,87908





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87897] Navigator no longer availa ble with F5 in full screen mode

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87897


User mru changed the following:

What|Old value |New value

 Assigned to|mru   |es





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:02:30 + 
2008 ---
Reassigned to ES.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 87907] Inclusion of language Orom o in the Locale Setting dialog box

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87907


User pjanik changed the following:

What|Old value |New value

 Assigned to|pjanik|er

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:15:52 + 
2008 ---
Eike: can you please take over?



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87517] Toolbar missing

2008-04-05 Thread mba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87517


User mba changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:15:53 + 
2008 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87517] Toolbar missing

2008-04-05 Thread mba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87517


User mba changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:17:07 + 
2008 ---
closing

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 85896] [CWS notes2] Notes in tabl es loose their anchor after undoing table dele tion

2008-04-05 Thread mod
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85896


User mod changed the following:

What|Old value |New value

  CC|''|'fme'





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:18:25 + 
2008 ---
@fme: could you help out and have an idea? I guess GetRectOfCurrentChar()
returns a wrong value, but why?



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 85896] [CWS notes2] Notes in tabl es loose their anchor after undoing table dele tion

2008-04-05 Thread mod
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85896





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:19:40 + 
2008 ---
@fme: btw, the next calculation is correct again and anchor returns to correct
position

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 86450] [Notes2] Document read on ly mode; text selection issues with document text and Notes

2008-04-05 Thread mod
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86450


User mod changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:07:08 + 
2008 ---
works fine now due to another fix, so setting to resolved

@christophnoack: please verify once notes3 made it into a master milestone

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87909] Offer option wether the pr eview thumb should be included in file or not

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87909
 Issue #|87909
 Summary|Offer option wether the preview thumb should be includ
|ed in file or not
   Component|framework
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|FEATURE
Priority|P3
Subcomponent|ui
 Assigned to|mba
 Reported by|mru





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:27:58 + 
2008 ---
his should be implemented at least for the MS Office export, because MSO offers
this in its File.Properties. Especially for a roundtrip, someone will wonder why
his .doc file will grow by about 50k.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 55266] DataPilot uses large amoun ts of memory when selecting multiple row fiel ds

2008-04-05 Thread canis
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=55266





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:48:22 + 
2008 ---
Hm, I was bet on high priority of such issues. Because of this Calc CRASHES
working with pivot tables. Is not this the sufficient cause for solving this 
issue?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 55266] DataPilot uses large amoun ts of memory when selecting multiple row fiel ds

2008-04-05 Thread canis
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=55266


User canis changed the following:

What|Old value |New value

  CC|'kohei,kpalagin,pagalmes' |'canis,kohei,kpalagin,paga
|  |lmes'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 85843] [Notes2] Automatic spellch ecking does not work with only one word in a n ote

2008-04-05 Thread mod
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85843





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:50:02 + 
2008 ---
fixed: once you leave the note, spell checking shows up

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87910] WW8: empty paragraĆ¼h betw een TOC and table lost

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87910
 Issue #|87910
 Summary|WW8: empty paragraĆ¼h between TOC and table lost
   Component|Word processor
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|hbrinkm
 Reported by|mru





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:53:25 + 
2008 ---
Open attached odt, see the empty paragraph between table and TOC. Export this to
WW8 and reopen - the empty paragraph is gone

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87911] right mouse-click substitu tion does not work.

2008-04-05 Thread dasistwas
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87911
 Issue #|87911
 Summary|right mouse-click substitution does not work.
   Component|framework
 Version|OOo 2.4.0
Platform|Opteron/x86_64
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|tm
 Reported by|dasistwas





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:53:30 + 
2008 ---
I have ubuntu (gnome).

I have a mouse with no right mouse button, so I replaced the right mouse button
with  ctrl+left click system wide. This works fine with other applications
like gedit, etc.. 
When I press ctrl+left click in OOo nothing happens.

Content of my mouse emulation script: /etc/default/mouseemu:
MID_CLICK=-middle 125 272 # Command key + mouse click
RIGHT_CLICK=-right 29 272 # Control key + mouse click

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87910] WW8: empty paragraph betwe en TOC and table lost

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87910


User mru changed the following:

What|Old value |New value

 Summary|WW8: empty paragraĆ¼h betw|WW8: empty paragraph betwe
|een TOC and table lost|en TOC and table lost





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:55:17 + 
2008 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[lingucomponent-issues] [Issue 87531] to-be-DEV300_m5: lingucomp onent/source/hyphenator/altlinuxhyph/hyphen/hy phenimp.cxx

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87531


User pjanik changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:31:50 + 
2008 ---
Verified, closing.

Seen in DEV300_m6.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87909] Offer option wether the pr eview thumb should be included in file or not

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87909





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 10:31:39 + 
2008 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87910] WW8: empty paragraph betwe en TOC and table lost

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87910





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:02:32 + 
2008 ---
Created an attachment (id=52565)
smaple file with TOC and table


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87901] Math displays equals as -

2008-04-05 Thread troodon
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87901


User troodon changed the following:

What|Old value |New value

  CC|''|'troodon'





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:03:35 + 
2008 ---
This seems to be a reincarnation of issue 16470. I only see the - rendering at
zoom levels 81% (1280x800 resolution with subpixel rendering on) but at zoom
leves between 159% and 245% I see the unequal bar rendering.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 71185] Labels names not localizab le since 2.0

2008-04-05 Thread filmsi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=71185





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:13:40 + 
2008 ---
Thanks, szilveszter!
Who should I reassign this bug to? Someone who will put the patch to its proper
place... ih?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 85843] [Notes2] Automatic spellch ecking does not work with only one word in a n ote

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85843


User pjanik changed the following:

What|Old value |New value

 Assigned to|mba   |mod





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:34:18 + 
2008 ---
Reassign to mod.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87912] WW8: Company name added to properties by export to MS Office formats

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87912
 Issue #|87912
 Summary|WW8: Company name added to properties by export to M
|S Office formats
   Component|framework
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|mba
 Reported by|mru





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:36:46 + 
2008 ---
Open attached document, save as WW8 format, open in MS Wrd - in
File.Properties, there now is an entry for Company.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87913] to-be-DEV300_m6: correct a ll hacks done to configure.in without testing. ..

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87913
 Issue #|87913
 Summary|to-be-DEV300_m6: correct all hacks done to configure.i
|n without testing...
   Component|tools
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|configure
 Assigned to|kz
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:40:06 + 
2008 ---
Hi,

configure in m6 is unusable. Patch will be attached soon.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 77876] Please allow to specify al l parameters for Bezier curves by direct keybo ard entry

2008-04-05 Thread syzygy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77876





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:47:29 + 
2008 ---
Dear developers! Please ponder on implementing this option, because her 
absence makes a very heavy work with curves. Thank you.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87913] to-be-DEV300_m6: correct a ll hacks done to configure.in without testing. ..

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87913


User pjanik changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |52566)
Fix configure.in an
|  |d also regenerate configur
|  |e






--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:48:16 + 
2008 ---
Created an attachment (id=52566)
Fix configure.in and also regenerate configure


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87913] to-be-DEV300_m6: correct a ll hacks done to configure.in without testing. ..

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87913





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 11:53:59 + 
2008 ---
Of course only configure.in change is to be used. configure should be 
regenerated, the rest ignored...



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 86049] Column limitation in Sprea dSheet (enhance to 16k)

2008-04-05 Thread craketech
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86049


User craketech changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |NEW

  Ever confirmed|  |1





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:00:15 + 
2008 ---
*** Issue 86049 has been confirmed by votes. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 22147] selfe-executing presentati ons

2008-04-05 Thread canis
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=22147





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:12:06 + 
2008 ---
Number of votes could be much more than 70 if not WONTFIX.
In 3-5 month it will be 30-40 I think, but it doesn't mean users think better 
of it.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87913] to-be-DEV300_m6: configure .in broken

2008-04-05 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87913


User rene changed the following:

What|Old value |New value

 Summary|to-be-DEV300_m6: correct a|to-be-DEV300_m6: configure
|ll hacks done to configure|.in broken
|.in without testing...|





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:18:38 + 
2008 ---
The presenter/minimizer changes are OK, I'll not judge the Windows changes,
since I don't know what they are about :)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87912] WW8: Company name added to properties by export to MS Office formats

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87912





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:22:32 + 
2008 ---
Created an attachment (id=52567)
Sample showing changing properties


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87904] WW8: text in certain graph ic nearly unreadable

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87904


User mru changed the following:

What|Old value |New value

 Assigned to|mru   |sj

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

 Summary|Viewing issue with text in|WW8: text in certain graph
| issue 60185 test case|ic nearly unreadable

Target milestone|---   |OOo 3.x





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:31:43 + 
2008 ---
MRU-SJ: the taxt in the graphic from the document of issue 60185 is imported
quite low-resoluted. Looks much better in MS Word.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87904] WW8: text in certain graph ic nearly unreadable

2008-04-05 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87904





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:32:41 + 
2008 ---
Created an attachment (id=52568)
doc from issue 60185


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 85161] Datapilot painfully slow

2008-04-05 Thread swubuntu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85161


User swubuntu changed the following:

What|Old value |New value

  CC|'kohei'   |'kohei,swubuntu'





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:35:00 + 
2008 ---
Generally, one can detect, that DataPilot is extra slow when the result contains
a big number of columns and/or rows. Whereas, performance is not very much
dependant on the size of the data source.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 50886] Datapilot defaults to the current worksheet, instead of a new worksheet

2008-04-05 Thread swubuntu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=50886


User swubuntu changed the following:

What|Old value |New value

  CC|'pagalmes'|'pagalmes,swubuntu'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87914] Add option to keep non-BO DY data in writer - web

2008-04-05 Thread ohallot
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87914
 Issue #|87914
 Summary|Add option to keep non-BODY data in writer - web 
   Component|Word processor
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|FEATURE
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|ohallot





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:41:34 + 
2008 ---
I like very much the possibility to edit html with writer. I have tons of html
pages to deal with at the moment.

As already described in many, many issues filed and closed, writer/web has its
own issues on dealing with CSS styles.

The main purpose of this issue is to suggest an option for writer /web to keep
non-body data untouched.

in this example, I have the following 


HEAD
META HTTP-EQUIV=CONTENT-TYPE CONTENT=text/html; charset=iso-8859-1
TITLE/TITLE
META NAME=GENERATOR CONTENT=BrOffice.org 2.4  (Linux)
META NAME=AUTHOR CONTENT=Olivier Hallot
META NAME=CREATED CONTENT=20080404;10401700
META NAME=CHANGED CONTENT=20080404;17122600
META NAME=CHANGEDBY CONTENT=Olivier Hallot
link type=text/css rel=stylesheet href=../../_css/hlp.css
SCRIPT SRC=../../dwr/engine.js/SCRIPT
SCRIPT SRC=../../_js/SGIWin.js/SCRIPT
SCRIPT
function INIT_win()
{
gbl_objWin.setTitulo(Ajuda);
gbl_objWin.setTopLeft(50,250);
}
/SCRIPT
/HEAD


After editing the file, the style link is gone:

HEAD
META HTTP-EQUIV=CONTENT-TYPE CONTENT=text/html; charset=utf-8
TITLE/TITLE
META NAME=GENERATOR CONTENT=BrOffice.org 2.4  (Linux)
META NAME=CREATED CONTENT=0;0
META NAME=CHANGED CONTENT=20080404;15252500
META NAME=CHANGEDBY CONTENT=Olivier Hallot
SCRIPT SRC=../../dwr/engine.js/SCRIPT
SCRIPT SRC=../../_js/SGIWin.js/SCRIPT
SCRIPT
function INIT_win()
{
gbl_objWin.setTitulo(Ajuda);
gbl_objWin.setTopLeft(50,250);
}
/SCRIPT
/HEAD

This has been reported many times since the early days of OO and was repeatedly
closed with no solution.

If I have an option to make writer NOT mess with HEAD that will help me to do
my job as I will be able to control the style externally. At this moment I just
want writer to generate text and default html tags with tidy as it does now, to
be controlled by the external css.

It will be an option in Tools-Writer/Web such as:

Preserve non-body content or Keep head as loaded

Thanks
Olivier

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 87915] to-be-DEV300_m6: gtkframe. cxx

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87915
 Issue #|87915
 Summary|to-be-DEV300_m6: gtkframe.cxx
   Component|gsl
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|code
 Assigned to|kz
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:48:53 + 
2008 ---
vcl/unx/gtk/window/gtkframe.cxx: In member function 'void 
GtkSalFrame::Init(SalFrame*, ULONG)':
/home/oo/BuildDir/ooo_DEV300_m6_src/vcl/unx/gtk/window/gtkframe.cxx:874: error: 
cannot 
convert 'GtkWidget*' to 'GtkWindow*' for argument '1' to 'void 
gtk_window_set_type_hint(GtkWindow*, 
GdkWindowTypeHint)'

This fixes it:

-gtk_window_set_type_hint( m_pWindow, GDK_WINDOW_TYPE_HINT_UTILITY );
+gtk_window_set_type_hint( GTK_WINDOW(m_pWindow), 
GDK_WINDOW_TYPE_HINT_UTILITY );

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 85398] mws_ooh680: Your gcc is no t -fvisibility-inlines-hidden safe. Try with - -with-stlport

2008-04-05 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85398


User cmc changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:53:06 + 
2008 ---
closed

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[xml-issues] [Issue 84965] m241: link problem with gc c-4.2.1

2008-04-05 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84965





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 12:53:23 + 
2008 ---
In the DEV300 series on a buggy -fvisibility-inlines-hidden configure auto
deselects the use of -fvisibility-inlines-hidden so is this issue now just a
duplicate of issue 85398 ?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87916] Add possibility to load Ja va Server Pages in Writer

2008-04-05 Thread ohallot
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87916


User ohallot changed the following:

What|Old value |New value

  Issue type|DEFECT|FEATURE





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87916] Add possibility to load Ja va Server Pages in Writer

2008-04-05 Thread ohallot
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87916


User ohallot changed the following:

What|Old value |New value

 Version|1.0.0 |OOo 2.4.0





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 87917] to-be-DEV300_m6: framework

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87917
 Issue #|87917
 Summary|to-be-DEV300_m6: framework
   Component|gsl
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|code
 Assigned to|kz
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 13:13:00 + 
2008 ---
/home/oo/BuildDir/ooo_DEV300_m6_src/framework/source/services/backingcomp.cxx:608:
 error: 
expected type-specifier before 'ColorListener'
/home/oo/BuildDir/ooo_DEV300_m6_src/framework/source/services/backingcomp.cxx:608:
 error: 
expected `;' before 'ColorListener'
/home/oo/BuildDir/ooo_DEV300_m6_src/framework/source/services/backingcomp.cxx:612:
 error: 
'xPropSet' was not declared in this scope

- missing include classes/colorlistener
- just removing the line?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 87918] to-be-DEV300_m6: localize and Missplaced close tag: /oor:component-data

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87918
 Issue #|87918
 Summary|to-be-DEV300_m6: localize and Missplaced close tag: /
|oor:component-data
   Component|Presentation
 Version|1.0.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|wg
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 13:35:57 + 
2008 ---
localize -e -l en-US -f en-US.sdf -d

prints:

...Error: 
Missplaced close tag: /oor:component-data in 
line 44: /oor:component-data
..Error: Missplaced close tag: /oor:component-data in line 673: 
/oor:component-data
.Error: Missplaced close tag: /oor:component-data in line 14: 
/oor:component-data
.Error: Missplaced close tag: /oor:component-schema in line 323: 
/oor:component-schema
...

suspected file: sdext/source/presenter/PresenterScreen.xcs

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87919] to-be-DEV300_m6: mediawiki and build.xml?

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87919
 Issue #|87919
 Summary|to-be-DEV300_m6: mediawiki and build.xml?
   Component|Word processor
 Version|1.0.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|code
 Assigned to|mru
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 13:39:53 + 
2008 ---
/home/oo/BuildDir/ooo_DEV300_m6_src/swext/mediawiki/build.xml:143: The zip 
type doesn't 
support the nested file element.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87919] to-be-DEV300_m6: mediawiki and build.xml?

2008-04-05 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87919


User rene changed the following:

What|Old value |New value

  CC|''|'rene'





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 13:46:17 + 
2008 ---
just for completeness: builds fine here with ant 1.7.0..

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 87594] trendline (regression curv e) crashes Excel 2007

2008-04-05 Thread aziem
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87594





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 13:52:20 + 
2008 ---
FWIW, no crash in Excel 2003

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 87920] to-be-DEV300_m6: sd/source /ui/slidesorter/view/SlideSorterView.cxx

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87920
 Issue #|87920
 Summary|to-be-DEV300_m6: sd/source/ui/slidesorter/view/SlideSo
|rterView.cxx
   Component|Drawing
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|wg
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 13:56:09 + 
2008 ---
/home/oo/BuildDir/ooo_DEV300_m6_src/sd/source/ui/slidesorter/view/SlideSorterView.cxx:230:
 error: 
'GetController' was not declared in this scope


The same for the next line.

mrSlideSorter was missing in both cases?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87913] to-be-DEV300_m6: configure .in broken

2008-04-05 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87913





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:12:00 + 
2008 ---
and of course the PDF Import cws didn't change configure.in at all. Please add
those changes (note that the diff also contains Pavels changes except the
Windows ones)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87913] to-be-DEV300_m6: configure .in broken

2008-04-05 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87913


User rene changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |52569)
patch to add config
|  |ure option






--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:13:18 + 
2008 ---
Created an attachment (id=52569)
patch to add configure option


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 51787] Problems with creating mul tiple relations between tables

2008-04-05 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51787


User mechtilde changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:16:15 + 
2008 ---
as the OP wrote.

the issues is fixed with issue 56898 and verified

so I set the flags.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 51787] Problems with creating mul tiple relations between tables

2008-04-05 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51787


User mechtilde changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:17:18 + 
2008 ---
- verified

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 51787] Problems with creating mul tiple relations between tables

2008-04-05 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51787


User mechtilde changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:17:43 + 
2008 ---
- closed

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 87920] to-be-DEV300_m6: sd/source /ui/slidesorter/view/SlideSorterView.cxx

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87920


User pjanik changed the following:

What|Old value |New value

Priority|P3|P1





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:00:50 + 
2008 ---
build breaker.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 4032] cannot merge certain table cells: new table concept required

2008-04-05 Thread jkaufmann
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=4032





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:37:41 + 
2008 ---
jkaufmann-ama:

Thanks for your replies.  May I get clarification of some points?


 ama-kfen: BTW if you want to get a cell out of sync just drag the cell
border with the mouse while pressing Shift+Strg.

Maybe this is the crux of my misunderstanding: When I see if you want to get a
cell 'out of sync'..., I just wonder Why would anyone want to do that?  Looking
over bug reports on this and the related issues, the common theme seems to be
that they come from people trying precisely NOT to do that -- trying to maintain
table structures that collapse in OO under standard cell merge and split
operations.  If I could understand why loss of structure is ever a feature
rather than a bug, I would understand how OO's table model improves on what we
see in other apps.  Then my only remaining question would be whether the ideal
is OO's row behavior or its column behavior (and, of course, why there is such
difference).


 ama-kfen: For vertical splitting of cells we do have an option Into equal
proportions, which can be disabled (and is disabled as default!). For
horizontal splitting we do not have such an option, we are splitting _always_
into _equal_ proportions.

Again I am confused, this time on two points:

1) In my copy of OO 2.4, the option of splitting Into equal proportions seems
to apply to splitting Horizontally, not Vertically. (That is, Vertical splitting
has no such option.)  However, if this is just a matter of you being caught by
OO's counterintuitive naming convention, I sympathize.  When discussing OO table
functions, I use the terms horizontal and vertical because those are OO's
terms of choice (though I must admit they seem backward to me, as they may to
you).  I prefer the unambiguous terms row and column used everywhere else.

2) [As I have wondered elsewhere] Why is it good to have horizontal and vertical
behavior be different?  That certainly seems counter to every basic table model,
whether matrix or record/field or any other structure I know.  Can you help me
understand the advantage of this, and what logical model it serves?


 ama-kfen: This can be changed, we could invoke such an option and we could
change the split algorithm like you wish. This is no bug, is just a new feature,
you could submit a feature/enhancement issue.  But to implement such a feature I
will not need to change our (new) table model. And I do not need to change our
naming convention. It's only a local change in the split function.

Again, *which* split algorithm - horizontal (row) or vertical (column),
and by what logic are they different?
   Looking at the bug reports - many of which are not resolved by the latest
table model - they seem linked by the table model, not by the algorithm used for
any particular merge or split operation.  The new model is better than the old
one, but all of the bug reports seem to anticipate a strict grid construction,
and I don't think the new model is there yet.  And if, when Cell Split is
invoked, the choices offered take no account of an underlying grid, how is this
an algorithm issue and *not* a model issue?


 ama-jkaufmann: I agree that there might be issues with our table handling. 
But none of your named issues is a problem of our new table model and none of
them convinced me to reopen this task.  The original problem of this task was
the problem that the old table model disallowed the merging of table cells even
in simple situations.  This has been fixed by implementation of our new table
model.

When you say, The original problem ... was the problem that the old table model
disallowed the merging of table cells even in simple situations, I think you
arbitrarily narrow the problem considerably -- especially when other posts on
this issue, and other issues which were closed as duplicates of 4032, are not so
easily described.  It is true that certain merge operations no longer return the
error cells are too complex to merge, but that does not necessarily mean that
the merger which results is one which the user desires or expects -- especially
if that result is different from what the user would get from other apps which
set the norm for this domain.


 ama-jkaufmann: So what's your point?
1. You dislike the layout of the 3x2 table (with merged A1:A2 and B2:B3) because
it does not show the underlying grid structure.  Okay, it's a valid point. But
if you have some text in your cells, you will see that the new table model has
the expected structure.

Well, that's not completely accurate: It's true that the grid appearance changes
with cell contents, but depending on *how much* text you have in *each* cell,
the grid may or may not be apparent.  Actually [as I found out in my last post,
where I had to delete a long passage to make the length more reasonable], the
analysis 

[l10n-issues] [Issue 87921] [HU]: translation fixes fo r issues found in OOo 2.4

2008-04-05 Thread timar
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87921
 Issue #|87921
 Summary|[HU]: translation fixes for issues found in OOo 2.4
   Component|l10n
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|ui
 Assigned to|ihi
 Reported by|timar





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:49:53 + 
2008 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 87921] [HU]: translation fixes fo r issues found in OOo 2.4

2008-04-05 Thread timar
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87921





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 14:51:50 + 
2008 ---
Created an attachment (id=52570)
please integrate this, thanks


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 70480] Counting the number of lin es, columns or cells in the current selection

2008-04-05 Thread belug
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70480


User belug changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |NEW

  Ever confirmed|  |1





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 15:44:55 + 
2008 ---
*** Issue 70480 has been confirmed by votes. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 4756] Expand shortcut possibiliti es

2008-04-05 Thread tommy27
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=4756





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 15:45:26 + 
2008 ---
i think that would be very nice to have more hotkeys. you got my vote.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 87922] Make it possible that Prot ected Powerpoint document is opened by OOo

2008-04-05 Thread cornouws
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87922
 Issue #|87922
 Summary|Make it possible that Protected Powerpoint document is
| opened by OOo
   Component|Presentation
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|open-import
 Assigned to|wg
 Reported by|cornouws





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 15:47:34 + 
2008 ---
Make it possible that Protected Powerpoint document is opened by OOo

When a password is set in Powerpoint (My guess: Tools|Options|Security|Password
to Modify) the file cannot be opened by OOo.
Would be fine if it could ...
I'll attach a file with screenshots.

Thanks - Cor

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 87922] Make it possible that Prot ected Powerpoint document is opened by OOo

2008-04-05 Thread cornouws
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87922





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 15:49:36 + 
2008 ---
Created an attachment (id=52571)
File with screenshots of popup when opening in PPT and trying to in OOo


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 87902] Auto Filter does not erase past bottom of result set

2008-04-05 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87902


User rainerbielefeld changed the following:

What|Old value |New value

  CC|''|'rainerbielefeld'

Keywords|  |needmoreinfo, oooqa





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 16:35:03 + 
2008 ---
I checked with 2.4.0  Multilingual version German UI WIN XP:
[680m12(Build9286)]  and can NOT confirm the reported effect.

@ekriirke:
Please
- attach a screenshot and a sample document
- contribute information concerning your graphic card

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87923] to-be-DEV300_m6: xpdf and unexpected otool -D output

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87923
 Issue #|87923
 Summary|to-be-DEV300_m6: xpdf and unexpected otool -D output
   Component|tools
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|Mac OS X
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|code
 Assigned to|obo
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 16:36:05 + 
2008 ---
paveljanik:/Volumes/Build/pavel/AQUA/BuildDir/ooo_DEV300_m6_src/xpdf pavel$ 
build
build -- version: 1.164


=
Building module xpdf
=
/Volumes/Build/pavel/AQUA/BuildDir/ooo_DEV300_m6_src/xpdf
-
cp -f ./unxmacxi.pro/misc/build/xpdf-3.02/fofi/lib*.a 
./unxmacxi.pro/misc/build/xpdf-
3.02/goo/lib*.a ./unxmacxi.pro/misc/build/xpdf-3.02/xpdf/lib*.a 
./unxmacxi.pro/lib
dmake: Executing shell macro: ls $(foreach,j,$(OUT2LIB) $(LB)$/$(j:f))
/usr/bin//perl 
/Volumes/Build/pavel/AQUA/BuildDir/ooo_DEV300_m6_src/solenv/bin/macosx-
change-install-names.pl extshl \
OOO ./unxmacxi.pro/lib/libGoo.a ./unxmacxi.pro/lib/libGoo.a 
./unxmacxi.pro/lib/libGoo.a 
./unxmacxi.pro/lib/libfofi.a ./unxmacxi.pro/lib/libfofi.a 
./unxmacxi.pro/lib/libfofi.a 
./unxmacxi.pro/lib/libxpdf.a ./unxmacxi.pro/lib/libxpdf.a 
./unxmacxi.pro/lib/libxpdf.a
unexpected otool -D output (Archive : ./unxmacxi.pro/lib/libGoo.a
, expecting ./unxmacxi.pro/lib/libGoo.a:) at 
/Volumes/Build/pavel/AQUA/BuildDir/ooo_DEV300_m6_src/solenv/bin/modules/macosxotoolhelper.p
m line 44, IN line 1.
dmake:  Error code 255, while making 
'./unxmacxi.pro/misc/build/so_predeliver_xpdflib'

ERROR: Error 65280 occurred while making 
/Volumes/Build/pavel/AQUA/BuildDir/ooo_DEV300_m6_src/xpdf
paveljanik:/Volumes/Build/pavel/AQUA/BuildDir/ooo_DEV300_m6_src/xpdf pavel$

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 87924] to-be-DEV300_m6: SetScreen Number for aqua

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87924
 Issue #|87924
 Summary|to-be-DEV300_m6: SetScreenNumber for aqua
   Component|gsl
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|Mac OS X
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|code
 Assigned to|pl
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 16:42:40 + 
2008 ---
SetScreenNumber fro aqua is missing...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87919] to-be-DEV300_m6: mediawiki and build.xml?

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87919


User pjanik changed the following:

What|Old value |New value

 Assigned to|mru   |rene

Priority|P1|P3

Target milestone|---   |OOo 3.0





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:00:07 + 
2008 ---
rene: yes, confirmed.

Then we have to extend configure to check for ant version.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87923] to-be-DEV300_m6: xpdf and unexpected otool -D output

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87923


User pjanik changed the following:

What|Old value |New value

  CC|'kz'  |'kz,sb'





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:03:37 + 
2008 ---
sb: you are the author of

solenv/bin/modules/macosxotoolhelper.pm



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[installation-issues] [Issue 75762] Installer option to create shortcut icons on desktop and in quicklaunch toolbar

2008-04-05 Thread billp
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75762





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:05:21 + 
2008 ---
The questions regarding the desktop icons only go back a few monthe on the new
OpenOffice.org Community Forum, but similar questions go back to at least 2003
on the old OpenOffice.org Forum.

http://www.oooforum.org/forum/viewtopic.phtml?t=3020
http://www.oooforum.org/forum/viewtopic.phtml?t=11417
http://www.oooforum.org/forum/viewtopic.phtml?t=15785
http://www.oooforum.org/forum/viewtopic.phtml?t=17333
http://www.oooforum.org/forum/viewtopic.phtml?t=25226
http://www.oooforum.org/forum/viewtopic.phtml?t=27751
http://www.oooforum.org/forum/viewtopic.phtml?t=32693
http://www.oooforum.org/forum/viewtopic.phtml?t=33410
http://www.oooforum.org/forum/viewtopic.phtml?t=34187
http://www.oooforum.org/forum/viewtopic.phtml?t=52428
http://www.oooforum.org/forum/viewtopic.phtml?t=55310
http://www.oooforum.org/forum/viewtopic.phtml?t=55482
http://www.oooforum.org/forum/viewtopic.phtml?t=55613
http://www.oooforum.org/forum/viewtopic.phtml?t=55912
http://www.oooforum.org/forum/viewtopic.phtml?t=55974
http://www.oooforum.org/forum/viewtopic.phtml?t=61491
http://www.oooforum.org/forum/viewtopic.phtml?t=62602
http://www.oooforum.org/forum/viewtopic.phtml?t=63855
http://www.oooforum.org/forum/viewtopic.phtml?t=68704
http://www.oooforum.org/forum/viewtopic.phtml?t=68414
http://www.oooforum.org/forum/viewtopic.phtml?t=69472


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87899] cannot open file while the math edit window is open

2008-04-05 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87899


User rainerbielefeld changed the following:

What|Old value |New value

  CC|''|'rainerbielefeld'

 Assigned to|mru   |sba

   Component|Word processor|ui

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Keywords|  |oooqa

  OS/Version|All   |Windows XP

  QA contact|[EMAIL PROTECTED] |[EMAIL PROTECTED]

Platform|All   |PC

Subcomponent|open-import   |ui





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:09:54 + 
2008 ---
I checked with 2.4.0  Multilingual version German UI WIN XP:
[680m12(Build9286)]  and can confirm the reported effect. Also menu 'file -
Open' does not work.
It seems that this is not 100% reproducible, one time I successfully opened a 
file 

Not only a WRITER problem, I see the same problem with CALC.
Also fails with 2.0.2

Worked fine with 1.1.4

@tab:
Pls. specify your OS and Platform!

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[ui-issues] [Issue 87899] cannot open file while the math edit window is open

2008-04-05 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87899


User rainerbielefeld changed the following:

What|Old value |New value

  CC|''|'rainerbielefeld'

 Assigned to|mru   |sba

   Component|Word processor|ui

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Keywords|  |oooqa

  OS/Version|All   |Windows XP

  QA contact|[EMAIL PROTECTED] |[EMAIL PROTECTED]

Platform|All   |PC

Subcomponent|open-import   |ui





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:09:54 + 
2008 ---
I checked with 2.4.0  Multilingual version German UI WIN XP:
[680m12(Build9286)]  and can confirm the reported effect. Also menu 'file -
Open' does not work.
It seems that this is not 100% reproducible, one time I successfully opened a 
file 

Not only a WRITER problem, I see the same problem with CALC.
Also fails with 2.0.2

Worked fine with 1.1.4

@tab:
Pls. specify your OS and Platform!

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 87925] xpdf: misc issues

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87925
 Issue #|87925
 Summary|xpdf: misc issues
   Component|tools
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P4
Subcomponent|code
 Assigned to|thb
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:16:18 + 
2008 ---
- unified diff please

- aconf.h is the patch? Why?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87919] to-be-DEV300_m6: mediawiki and build.xml?

2008-04-05 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87919


User rene changed the following:

What|Old value |New value

 Assigned to|rene  |kz





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:30:49 + 
2008 ---
As configure.in needs fixes for m6 anyway, we can do this as a masterfix, too,
can't we?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 87919] to-be-DEV300_m6: mediawiki and build.xml?

2008-04-05 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87919


User rene changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |52572)
the change






--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:38:31 + 
2008 ---
Created an attachment (id=52572)
the change


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 87926] to-be-DEV300_m6: dbaccess mismerged?

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87926
 Issue #|87926
 Summary|to-be-DEV300_m6: dbaccess mismerged?
   Component|Database access
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|none
 Assigned to|fs
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:39:09 + 
2008 ---
in to-be-m6, there are many strange compile issues.

I suspect that the file inc/genericcontroller.hxx is mismerged...

Please investigate.

... time passes ...

yes:

[EMAIL PROTECTED]:~/BuildDir/ooo_DEV300_m6_src/dbaccess grep -r  *
source/ui/misc/singledoccontroller.cxx~: singledoccontroller.cxx
source/ui/misc/singledoccontroller.cxx: singledoccontroller.cxx
[EMAIL PROTECTED]:~/BuildDir/ooo_DEV300_m6_src/dbaccess

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 87849] Crash at startup

2008-04-05 Thread smsm1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87849





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:47:12 + 
2008 ---
Do you have any extensions installed?

What happens when you rename the preferences folder ~/Library/Application 
Support/OpenOffice.org/2/ 
to something else?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 87927] to-be-DEV300_m6: sd WaE

2008-04-05 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87927
 Issue #|87927
 Summary|to-be-DEV300_m6: sd WaE
   Component|Drawing
 Version|DEV300m5
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|kz
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 17:48:32 + 
2008 ---
/data/oo/BuildDir/ooo_DEV300_m6_src/sd/source/ui/presenter/PresenterTextView.cxx:255:
 warning: 
'aColor' may be used uninitialized in this function
/data/oo/BuildDir/ooo_DEV300_m6_src/sd/source/ui/presenter/PresenterTextView.cxx:261:
 warning: 
'aColor' may be used uninitialized in this function
/data/oo/BuildDir/ooo_DEV300_m6_src/sd/source/ui/presenter/PresenterTextView.cxx:273:
 warning: 
'nTop' may be used uninitialized in this function


-util::Color aColor;
+util::Color aColor = util::Color();

-sal_Int32 nTop;
+sal_Int32 nTop = 0;

solved it.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 85700] [IT] Typo in translation i n Draw (cetrato)

2008-04-05 Thread pescetti
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85700


User pescetti changed the following:

What|Old value |New value

Keywords|needmoreinfo, oooqa   |oooqa





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 18:02:01 + 
2008 ---
Since this issue can (and probably will) be quickly resolved by using grep to
locate the string, I don't really see the necessity of a better specification
and screenshot for replacing an inexistent word.
Anyway, I'm attaching a screenshot showing the problem, so resolution can 
proceed.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 85700] [IT] Typo in translation i n Draw (cetrato)

2008-04-05 Thread pescetti
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85700





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 18:02:48 + 
2008 ---
Created an attachment (id=52573)
screenshot


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 85398] mws_ooh680: Your gcc is no t -fvisibility-inlines-hidden safe. Try with - -with-stlport

2008-04-05 Thread jcb62281
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85398


User jcb62281 changed the following:

What|Old value |New value

  CC|'kendy,kz,rene'   |'jcb62281,kendy,kz,rene'





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 18:34:30 + 
2008 ---
I think the given patch is suboptimal--it disables the visibilty feature
completely when the problem is certain to exist only with
-fvisibility-inlines-hidden; is there no way to use -fvisibility=hidden but not
-fvisibility-inlines-hidden?

I've made longer comments explaining what I think the cause of this is on Issue
84965.  In a nutshell: -fvisibility-inlines-hidden causes GCC to emit
relocations that shared objects on amd64 are not allowed to use.  This appears
to be an unavoidable consequence of what -fvisibility-inlines-hidden is intended
to do, and the only bug in GCC here is that it doesn't detect that
-fvisibility-inlines-hidden and -fPIC conflict on amd64 and give a more useful
error.  (In other words, trying to hide all evidence of inlines prevents truly
making position-independent code, which x86-64 shared objects are required to 
be.)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 87924] to-be-DEV300_m6: SetScreen Number for aqua

2008-04-05 Thread ericb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87924


User ericb changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |52574)
a workaround ...






--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 19:00:08 + 
2008 ---
Created an attachment (id=52574)
a workaround ...


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 87924] to-be-DEV300_m6: SetScreen Number for aqua

2008-04-05 Thread ericb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87924





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 19:04:51 + 
2008 ---
Even looking at the diffs, I can't retrieve the real implementation  ? 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[xml-issues] [Issue 84965] m241: link problem with gc c-4.2.1

2008-04-05 Thread jcb62281
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84965





--- Additional comments from [EMAIL PROTECTED] Sat Apr  5 19:09:25 + 
2008 ---
I suspect that this and Issue 85398 share the same root cause.  (Trying to avoid
using the PLT, where use of the PLT is mandatory.)

Some of the other comments there reference similar problems on S/390, except
that the S/390 linker apparently doesn't bail out with an error (!!) when asked
to do a similarly impossible link.

I have prepared an experimental patch that simply removes
-fvisibility-inlines-hidden on x86-64.  I'll post it if I succeed in building
with it.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



  1   2   >