[gsl-issues] [Issue 110881] Impress slideshow mode do es not work properly since it doesn't use _NET _WM_STATE_FULLSCREEN

2010-05-18 Thread dannybaumann
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110881





--- Additional comments from dannybaum...@openoffice.org Wed May 19 
06:55:35 + 2010 ---
I used the setup program of the package, which seems to do a similar thing.
selinux is disabled on my system. With your way of installation, I get the same
behaviour as with the installer.

-
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: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 111372] Writer Help states jre is n't installed

2010-05-18 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111372


User of changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from o...@openoffice.org Wed May 19 06:51:58 + 
2010 ---
...

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[installation-issues] [Issue 111263] Installation of current s table version leaves unusable soffice

2010-05-18 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111263


User of changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from o...@openoffice.org Wed May 19 06:50:48 + 
2010 ---
...

-
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: issues-unsubscr...@installation.openoffice.org
For additional commands, e-mail: issues-h...@installation.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 99149] C++ Runtime Error

2010-05-18 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=99149


User of changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from o...@openoffice.org Wed May 19 06:46:36 + 
2010 ---
...

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 99149] C++ Runtime Error

2010-05-18 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=99149


User of changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from o...@openoffice.org Wed May 19 06:46:08 + 
2010 ---
This is not reproducible with the latest OOo versions nor has it been with OOo
3.0.1.

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 111690] Writer hangs after openin g and closing 50 times

2010-05-18 Thread barnet
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111690





--- Additional comments from bar...@openoffice.org Wed May 19 06:43:18 
+ 2010 ---
I used the code in the same manner as shown below:

-
Sub SaveAsPDF_demo()

Dim oSM, oDesk, oDoc As Object 'OOo objects
Dim OpenParam(1) As Object 'Parameters to open the doc
Dim SaveParam(1) As Object 'Parameters to save the doc

Set oSM = CreateObject("com.sun.star.ServiceManager")
Set oDesk = oSM.createInstance("com.sun.star.frame.Desktop")

Set OpenParam(0) = MakePropertyValue("Hidden", True) ' Open the file hidden
Set oDoc = oDesk.loadComponentFromURL("file:///C:/tmp/testdoc.odt", "_blank", 0,
OpenParam())

Set SaveParam(0) = MakePropertyValue("FilterName", "writer_pdf_Export")
Call oDoc.storeToURL("file:///C:/tmp/testdoc.pdf", SaveParam())

Set oDesk = Nothing
Set oSM = Nothing
End Sub

Public Function MakePropertyValue(cName, uValue) As Object
Dim oStruct, oServiceManager as Object
Set oServiceManager = CreateObject("com.sun.star.ServiceManager")
Set oStruct = 
oServiceManager.Bridge_GetStruct("com.sun.star.beans.PropertyValue")
oStruct.Name = cName
oStruct.Value = uValue
Set MakePropertyValue = oStruct
End Function 
-

The function SaveAsPDF_demo() I called several times like

While documents ar in a folder
  SaveAsPDF_demo()
loop

Therefore I used the code it in a serialized manner but I suppose that
OpenOffice makes multiple threads because I get the PDFs not file per file but
packages with three to four files every 10 to 15 seconds.

What I shall do next:
- open Open Office once and keep it open for the whole session
- go thrue all the files and convert them without closing Open Office
- close Open Office at the end of the application





-
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: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 111543] Numbered bullets are lost on PPT export

2010-05-18 Thread md
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111543


User md changed the following:

What|Old value |New value

  CC|''|'md'





-
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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 111692] Access to invalid iterato r

2010-05-18 Thread os
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111692


User os changed the following:

What|Old value |New value

Target milestone|---   |OOo 3.3





--- Additional comments from o...@openoffice.org Wed May 19 06:39:23 + 
2010 ---
Target set

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 111692] Access to invalid iterato r

2010-05-18 Thread os
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111692
 Issue #|111692
 Summary|Access to invalid iterator
   Component|framework
 Version|DEV300m77
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|cd
 Reported by|os





--- Additional comments from o...@openoffice.org Wed May 19 06:39:00 + 
2010 ---
in desktop/source/migration/migration.cxx is the following code in
insertSorted(...): 
---
while ( !bInserted && pIter != rAvailableMigrations.end())
{
if ( pIter->nPriority < aSupportedMigration.nPriority )
{
rAvailableMigrations.insert(pIter, aSupportedMigration );
bInserted = true;
}
++pIter;
}

After insertion of the new element pIter is invalid. 
This creates an STL error message in non-product builds.

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 111613] program downloaded but ca nnot pull up files

2010-05-18 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111613


User of changed the following:

What|Old value |New value

 Assigned to|ab|of





--- Additional comments from o...@openoffice.org Wed May 19 06:19:32 + 
2010 ---
reassigned

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111691] The chart and the text bo x are overlapped

2010-05-18 Thread suhefeng
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111691





--- Additional comments from suhef...@openoffice.org Wed May 19 06:12:30 
+ 2010 ---
In OO3.0, it works well.

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111691] The chart and the text bo x are overlapped

2010-05-18 Thread suhefeng
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111691





--- Additional comments from suhef...@openoffice.org Wed May 19 06:11:17 
+ 2010 ---
Created an attachment (id=69523)
Add the sample file and 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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[script-issues] [Issue 111453] OOo Basic: Password prote cted libraries not accessible when read only

2010-05-18 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111453


User of changed the following:

What|Old value |New value

Target milestone|OOo 3.3   |OOo 3.2.1





--- Additional comments from o...@openoffice.org Wed May 19 06:09:41 + 
2010 ---
of: adjusted target

-
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: issues-unsubscr...@script.openoffice.org
For additional commands, e-mail: issues-h...@script.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111691] The chart and the text bo x are overlapped

2010-05-18 Thread suhefeng
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111691
 Issue #|111691
 Summary|The chart and the text box are overlapped
   Component|Word processor
 Version|OOO320m9
Platform|All
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|writerneedsconfirm
 Reported by|suhefeng





--- Additional comments from suhef...@openoffice.org Wed May 19 06:07:53 
+ 2010 ---
1.Open the sample file in attachment
2.the chart and the text box are overlapped. pls check the screen shot

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 111690] Writer hangs after openin g and closing 50 times

2010-05-18 Thread jsc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111690





--- Additional comments from j...@openoffice.org Wed May 19 05:23:42 + 
2010 ---
We don't support VB6 directly. I assume you use the OLE automation bridge from
VB. Anyway, do you convert the docs sequential or potentially in parallel from
several threads?

It is a known problem that OOo has problems with threads and especially in a
server scenario it is useful to restart the office from time to time and to
serialize the calls to one office instance.

-
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: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 95045] can't open Excel 2003 xml files in OOO, can't open OOO excel 2003 xml fi les in Excel

2010-05-18 Thread jmichae3
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=95045





--- Additional comments from jmich...@openoffice.org Wed May 19 05:19:45 
+ 2010 ---
this is a lose-lose situation here.  everybody loses - 
the customer loses because the product doesn't work.
I lose because my bug gets dissed for providing details about the original
issue, which, if I am not mistaken, is 
"can't open Excel 2003 xml files in OOO, can't open OOO excel 2003 xml files in
Excel".

I get punished for providing details by breaking the original problem down into
minutia.  what kind of a deal is this?

I am a programmer. most programmers want details as to what exactly is wrong. 
So I provided the details.  I realize that was a big mistake.  I am not sure I
would want to deal with 20 bugs for one issue, but if that's the way you want
it, so be it.

please reopen the issue or tell me to create separate issues if you really feel
that separate issues for such minutia warrants separate bugs.

-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 95045] can't open Excel 2003 xml files in OOO, can't open OOO excel 2003 xml fi les in Excel

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


User rainerbielefeld changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from rainerbielef...@openoffice.org Wed May 19 
05:10:11 + 2010 ---
This issue collection never will be fixed, so I close it INVALID.

@jmichae3
such a report is without any chance, because you do not accept the guidelines.
The most important one is: only one problem per issue! No one (or at least: I)
will read and sort all this prose to find out what the problems might be, what
samples belong to what of the problems, and whether there might be a chance that
that will be repaired. As you know from other issues, Office 2003 XML
compatibility has low priority for OOo development.

Some of the listed problems (for example those concerning spaces in sheet name)
might be known and DUP of other issue.

Please feel free to post new separate issues for all your observations, but
please mention that you waste your and our time if you do not accept the
guidelines and if you do not try to make your reports "idiot proof"; I have more
than 1000 issues waiting for a confirmation, and so I will ignore issues with
reports with insufficient bug description.

-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 111690] Writer hangs after openin g and closing 50 times

2010-05-18 Thread barnet
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111690
 Issue #|111690
 Summary|Writer hangs after opening and closing 50 times
   Component|api
 Version|OOo 3.2
Platform|Other
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|jsc
 Reported by|barnet





--- Additional comments from bar...@openoffice.org Wed May 19 04:46:53 
+ 2010 ---
I am using OpenOffice Writer 3.2 to convert MS-Word Docs into the PDF-format.
Therefore I wrote some VB6-Code:
- open OpenOffice Writer
- open the Word Doc
- save in PDF-format
- set all obejcts = nothing
Code works fine and fast but after 50 times the program crashes with undefined
error and I am no more capable to work with other applications like MS-Word,
MS-Access nor Open Office.
I suppose that the garbage collection does not work properly.

-
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: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111689] Comment Background Does N ot Adapt To Text Appearance

2010-05-18 Thread kalzarius
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111689
 Issue #|111689
 Summary|Comment Background Does Not Adapt To Text Appearance
   Component|Word processor
 Version|OOO320m12
Platform|PC
 URL|
  OS/Version|Windows 7
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|editing
 Assigned to|writerneedsconfirm
 Reported by|kalzarius





--- Additional comments from kalzar...@openoffice.org Wed May 19 04:09:34 
+ 2010 ---
As I spend a great deal of my day editing, I cannot use black text on white
background and so choose a dark background with grey text. Unfortunately, the
background of my comments remains a bright yellow gradient while the text
remains my grey, which makes it almost invisible on the background of the
comment box. 

The comment box should either enforce black text or should have a setting
somewhere allowing the user to configure a set of colours to use for comment box
backgrounds (e.g., Tools > Options > OpenOffice.org + Appearance allows the
background of comments/notes for Calc).

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 111387] Disable wordwrap in numbe rcells

2010-05-18 Thread kohei
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111387





--- Additional comments from ko...@openoffice.org Wed May 19 03:10:29 + 
2010 ---
Sorry, I had to slightly modify my previous fix, since I discovered that it
might cause a crash under certain circumstances.  I have already verified that
the change doesn't alter the behavior, but you are of course welcome to
re-verify this if necessary.

-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 93957] Saving from OOo to CIFS vo lume fails

2010-05-18 Thread ccheney
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93957


User ccheney changed the following:

What|Old value |New value

  OS/Version|Mac OS X, all |All

Platform|Macintosh |All

 Summary|Saving from OOo/Mac to CIF|Saving from OOo to CIFS vo
|S volume fails|lume fails





--- Additional comments from cche...@openoffice.org Wed May 19 03:05:25 
+ 2010 ---
This is also documented to happen on Ubuntu saving to various NAS devices. I
wonder if it might be related to OOo calling ftruncate with a value other than
0. I know that at least when adding gvfs-fuse support to the Ubuntu version that
it seemed to cause problems with various backends and the resulting failure
sounds very similar to this. It might be that the NAS cifs doesn't properly
implement that either.

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 111678] public key for user lixxi ng

2010-05-18 Thread lixxing
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111678





--- Additional comments from lixx...@openoffice.org Wed May 19 02:59:24 
+ 2010 ---
The code change may impact: accessibility, basctl, chart2, dbaccess, desktop,
drawinglayer, extensions, filter, formula, fpicker, framework, offapi,
postprocess, sc, scp2, sd, sfx2, starmath, svtools, svx, sw, toolkit, vcl, 

And also a new module may be added. 

-
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: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 94002] Migrate sshkeys to SVN cod e repository

2010-05-18 Thread lixxing
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94002





--- Additional comments from lixx...@openoffice.org Wed May 19 02:47:43 
+ 2010 ---
Added my request: http://www.openoffice.org/issues/show_bug.cgi?id=111678

-
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: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 89147] Wrong Language in Tools/La nguage

2010-05-18 Thread khirano
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89147


User khirano changed the following:

What|Old value |New value

  CC|'maho,tl' |'khirano,maho,tl'





-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 111688] Snap to grid drift

2010-05-18 Thread crxssi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111688
 Issue #|111688
 Summary|Snap to grid drift
   Component|Drawing
 Version|OOo 3.2
Platform|All
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|editing
 Assigned to|graphicsneedsconfirm
 Reported by|crxssi





--- Additional comments from crx...@openoffice.org Tue May 18 23:28:08 
+ 2010 ---
I have noticed this over the years and have never reported it as a bug until
now.  I can use the snap-to-grid option, then create a complex drawing with
thousands of objects.  Things progress over days fine, saving, loading, editing,
etc.  But at some point, the grid will change position ever so slightly and
throw off all my objects.  I never touched the grid settings nor origin.

If, for example, I had a perfect square, drawn with 4 lines, so some later load,
the grid will shift a pixel or two and then if I move one of the corners and
place it back to where it was, the lines are no longer straight and the square
is no longer a perfect square and it is impossible to fix.

I have seen this happen multiple times, across multiple versions of Draw.  I
have no explanation.  More frustrating is that it is then impossible to ever
"fix" the drawing back to the grid again.  And if you have many thousands of
objects, like a blueprint or floor plan, it causes a big mess.

In addition to a fix for this bug, it would be nice to have an enhancement tool
that will allow the user to select certain objects or all objects, then perform
a correction that will snap every point in those objects to each nearest grid 
point.

-
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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111687] CrossReference .doc Impor t/Export

2010-05-18 Thread prab
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111687
 Issue #|111687
 Summary|CrossReference .doc Import/Export
   Component|Word processor
 Version|OOo 3.2
Platform|Unknown
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|writerneedsconfirm
 Reported by|prab





--- Additional comments from p...@openoffice.org Tue May 18 22:03:25 + 
2010 ---
I am trying to write a document containing some by-laws. In it, I have made one 
large numbered list. I want to add some cross references so I click Insert -> 
CrossReference -> Numbered Paragraphs -> Choose paragraph -> Number (full 
context) -> Insert. It inserts correctly. 

When I close and re-open the document as Microsoft Word 97/2000/XP (.doc), the 
cross references are still there, but they show up as 1 grey character.

When I close and re-open the document as ODF Text Document (.odt), it works as 
expected.

http://user.services.openoffice.org/en/forum/viewtopic.php?t=30695

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 105270] Writer saves text alignme nt of RTL paragraph not according to spec

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


User mba changed the following:

What|Old value |New value

 Assigned to|os|od

Target milestone|OOo 3.x   |OOo 3.3





--- Additional comments from m...@openoffice.org Tue May 18 21:25:23 + 
2010 ---
Set target to 3.3.

It will be a tough goal as there are many changes to be done. 
We have to change all paragraph styles or apply hard attributes in all documents
containing text parts in RTL writing direction at import time. A simple
compatibility switch won't work. 
We also will lose backwards compatibility to older OOo versions. Once saved with
OOo3.3, all documents with RTL text will be displayed wrongly in older version.
We also must change our user interface for paragraph attributes and remove the
terms "left" and "right" and use something else instead (as paragraph styles can
be applied to paragraphs with both writing directions). Exactly this was what
the UX team wanted to avoid (as os mentioned).

I assign this task to od as os currently is very busy with other things.

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 87159] WW8: import of certain 'fl oating' table crashes OpenOffice

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


User mechtilde changed the following:

What|Old value |New value

  CC|''|'mechtilde'

  Status|RESOLVED  |CLOSED





--- Additional comments from mechti...@openoffice.org Tue May 18 20:38:17 
+ 2010 ---
-> 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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 87159] WW8: import of certain 'fl oating' table crashes OpenOffice

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


User mechtilde changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from mechti...@openoffice.org Tue May 18 20:37:32 
+ 2010 ---
It seems to be fixed in 3.2.1 RC1 so
=> worksforme


-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 110181] ooo320m12版本_空格不 能自动换行

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


User mechtilde changed the following:

What|Old value |New value

  CC|'rainerbielefeld' |'mechtilde,rainerbielefeld
|  |'





--- Additional comments from mechti...@openoffice.org Tue May 18 20:16:21 
+ 2010 ---
can you please give us a step-by-step description to reprodue the problem

-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[installation-issues] [Issue 111411] Program disappears....

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


User mechtilde changed the following:

What|Old value |New value

  CC|'rainerbielefeld' |'mechtilde,rainerbielefeld
|  |'

  Status|RESOLVED  |CLOSED





--- Additional comments from mechti...@openoffice.org Tue May 18 19:12:30 
+ 2010 ---
.


-
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: issues-unsubscr...@installation.openoffice.org
For additional commands, e-mail: issues-h...@installation.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[installation-issues] [Issue 111411] Program disappears....

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


User mechtilde changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from mechti...@openoffice.org Tue May 18 19:11:46 
+ 2010 ---
so no response and no further informations about the problem

=> invalid

-
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: issues-unsubscr...@installation.openoffice.org
For additional commands, e-mail: issues-h...@installation.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 72440] [PL]Base: Partialy transla ted message window (lang: PL; QA Test)

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


User mechtilde changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from mechti...@openoffice.org Tue May 18 19:10:07 
+ 2010 ---
-< 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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 72440] [PL]Base: Partialy transla ted message window (lang: PL; QA Test)

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


User mechtilde changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from mechti...@openoffice.org Tue May 18 19:09:19 
+ 2010 ---
no response also from the L10n responsible

=> invalid

-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 110881] Impress slideshow mode do es not work properly since it doesn't use _NET _WM_STATE_FULLSCREEN

2010-05-18 Thread pl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110881





--- Additional comments from p...@openoffice.org Tue May 18 18:01:46 + 
2010 ---
strange, that install set seems to work on my FC12. However you seem to have
installed in /tmp, so a difference might be in the way we install; I used

"rpm -vh --install --dbpath /.rpm --nodeps --prefix  /*.rpm"

Using /tmp as  however worked fine for me, so I'm probably doing
something different than you.

Seeing the missing symbol kind of stack I got the idea that perhaps you're
running into a problem with SELinux which perhaps does not allow a library to be
loaded in that context, but that's just a wild guess.

-
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: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 111679] Can't store milliseconds in Time Type.

2010-05-18 Thread r4zoli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111679





--- Additional comments from r4z...@openoffice.org Tue May 18 17:45:04 
+ 2010 ---
The next 2.0 version of HSQLDB support fractional seconds in time fields (it is
in RC phase), when finished it is planned to be integrated into OOo 3.3. 

-
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: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84320] if notes are disabled, scr ipts are also not visible

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





--- Additional comments from m...@openoffice.org Tue May 18 17:43:55 + 
2010 ---
+1

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 111680] Row height changes after using autofilter

2010-05-18 Thread raal
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111680





--- Additional comments from r...@openoffice.org Tue May 18 17:35:43 + 
2010 ---
Cannot reproduce on ubuntu 9.10, DEV300m76.
After reopen is row height  still 1cm.
Tried following
- write some cells
- set row height to 1cm
- autofilter on first row
- filter data
- save, reopen
- set filter=All -> row height is 1cm

-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 111679] Can't store milliseconds in Time Type.

2010-05-18 Thread moreqs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111679





--- Additional comments from mor...@openoffice.org Tue May 18 17:28:07 
+ 2010 ---
Thanks for quick reply.
So, not an error, but a Time data type from the last century.

OOo Base provides the format 00:00.00 for Time, but that is misleading, as
HSQLDB can't store milliseconds in Time.

I need to add an 'improve Time datatype' to the wish list, (wherever that is).

Let me know if this should be marked as closed .. (even though the issue is
still an issue, but maybe not if there is a way around the problem, that has not
dawned on me yet)


-
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: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 68326] Accept alternate character s as minus sign for number recognition and cal culation

2010-05-18 Thread jes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68326





--- Additional comments from j...@openoffice.org Tue May 18 16:53:06 + 
2010 ---
Workaround:

Enter negative values with a normal hyphen; display negative values with a
typographical minus sign by using a custom number format, something like: 0;–0;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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 111685] OOo version 3.2.0 crashes when loading spreadsheets prepared on earlier versions

2010-05-18 Thread maxcel
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111685





--- Additional comments from max...@openoffice.org Tue May 18 16:40:10 
+ 2010 ---
Created an attachment (id=69520)
This file with five sheets crashes Calc before loading, consistently on both 
computers.


-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 111685] OOo version 3.2.0 crashes when loading spreadsheets prepared on earlier versions

2010-05-18 Thread maxcel
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111685





--- Additional comments from max...@openoffice.org Tue May 18 16:38:21 
+ 2010 ---
Created an attachment (id=69519)
This file, with four sheets, loads and runs


-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 111685] OOo version 3.2.0 crashes when loading spreadsheets prepared on earlier versions

2010-05-18 Thread maxcel
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111685
 Issue #|111685
 Summary|OOo version 3.2.0 crashes when loading spreadsheets pr
|epared on earlier versions
   Component|Spreadsheet
 Version|OOO320m12
Platform|PC
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|spreadsheet
 Reported by|maxcel





--- Additional comments from max...@openoffice.org Tue May 18 16:36:30 
+ 2010 ---
I have spreadsheets which were generated and edited in both OOo 3.0 and 3.1
which I am now trying to open in 3.2. all are saved in .ods format. Most crash
OOo without even loading, but leaving them locked. 

I have been conducting test using OOo 3.1 Calc to generate workbooks of varying
size and have discovered that any file over about 21KB will cause them to crash.
I have two computers with Ubuntu 10.04 and OOo 3.2.0 and the behavior is
identical on both. 

The problem does not exist with OOo 3.2.0 on WindowsXP. The only common factor
between the two Ubuntu computers is that they have both been updated from
earlier releases of Ubuntu.

I have sample files, but cannot see where to attach them.

-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 111683] insert image, Export to P DF image wrong size?

2010-05-18 Thread jes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111683





--- Additional comments from j...@openoffice.org Tue May 18 16:33:00 + 
2010 ---
This is a limitation of your original image, not in OOo Draw. If you want better
print quality, you need a different image that has higher resolution (more 
pixels).

Good quality printing requires a minimum of about 300 pixels per inch. To get
that, a logo image of the same size as in your sample document would have a
pixel size of 534x399 instead of your 128x96.

It looks ok on your screen because your screen has a limited resolution that is
only slightly better than the image itself. Enlarge the image to the full width
of the page and you'll see the pixels on the screen as well.

Draw can't print better quality than what is present in the image.

-
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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 78637] Unnessecary long lines in Settings Dialog > Load/Save

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


User mba changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |STARTED





--- Additional comments from m...@openoffice.org Tue May 18 16:16:09 + 
2010 ---
starting

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 78637] Unnessecary long lines in Settings Dialog > Load/Save

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


User mba changed the following:

What|Old value |New value

 Assigned to|requirements  |mba

Target milestone|---   |OOo 3.3





--- Additional comments from m...@openoffice.org Tue May 18 16:15:46 + 
2010 ---
So I take 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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 111650] non pro builds in cygwin with configure breaks in instset_native

2010-05-18 Thread hjs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111650


User hjs changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from h...@openoffice.org Tue May 18 16:14:27 + 
2010 ---
.

*** This issue has been marked as a duplicate of 111617 ***

-
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: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[installation-issues] [Issue 111617] instsetoo_native: order o f dependency rule to archive format

2010-05-18 Thread hjs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111617





--- Additional comments from h...@openoffice.org Tue May 18 16:14:25 + 
2010 ---
*** Issue 111650 has been marked as a duplicate of 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: issues-unsubscr...@installation.openoffice.org
For additional commands, e-mail: issues-h...@installation.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 111679] Can't store milliseconds in Time Type.

2010-05-18 Thread r4zoli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111679


User r4zoli changed the following:

What|Old value |New value

  CC|''|'r4zoli'

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from r4z...@openoffice.org Tue May 18 16:13:29 
+ 2010 ---
Time type use hh:mm:ss format and not store milliseconds. 

See details in HSQLDB documentation:
http://hsqldb.org/doc/guide/ch09.html#datatypes-section


-
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: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[installation-issues] [Issue 111621] the images in the install er are badly aliased.

2010-05-18 Thread is
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111621


User is changed the following:

What|Old value |New value

  Status|NEW   |STARTED





--- Additional comments from i...@openoffice.org Tue May 18 16:12:43 + 
2010 ---
Accepting

-
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: issues-unsubscr...@installation.openoffice.org
For additional commands, e-mail: issues-h...@installation.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 111577] CVS Access

2010-05-18 Thread st
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111577


User st changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from s...@openoffice.org Tue May 18 16:09:20 + 
2010 ---
The new key is in place. Feel free to reopen if there are problems with the ssh
tunnel.


-
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: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 110901] [CWS OOO321L10n] Wrong Fi le Names of Located Files

2010-05-18 Thread is
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110901


User is changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from i...@openoffice.org Tue May 18 16:05:58 + 
2010 ---
native299 is integrated into ooo320 m16 and dev300 m78. Closing 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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 84292] Meta issue to track issues from Redflag 2000 QA

2010-05-18 Thread mst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84292



This issue depends on issue 97421, which changed state:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





-
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: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 97421] Writer loops after deletin g invisible recorded changes and Undo

2010-05-18 Thread mst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97421


User mst changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from m...@openoffice.org Tue May 18 15:56:57 + 
2010 ---
fixed in cws sw33bf04
http://hg.services.openoffice.org/hg/cws/sw33bf04/rev/f78229069e7b

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 111659] 3 named Filter parameters are giving no results

2010-05-18 Thread r4zoli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111659


User r4zoli changed the following:

What|Old value |New value

  CC|''|'r4zoli'

  Status|UNCONFIRMED   |RESOLVED

Keywords|  |oooqa

  Resolution|  |WORKSFORME





--- Additional comments from r4z...@openoffice.org Tue May 18 15:55:38 
+ 2010 ---
I could confirm it with OOo 3.2 and OOo 3.2.1RC1 with SRB 1.2.0, the empty
report created.

In DEV300m77 with ORB 1.2.1 Alpha the three parameter report works.

The problem fixed in development version, I set as worksforme.

If you find in later development versions this problem again, open issue back. 

-
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: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 111452] framework: assert in Tran sactionManager when closing window with quicks tart enabled

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


User mba changed the following:

What|Old value |New value

Target milestone|OOo 3.x   |OOo 3.3





--- Additional comments from m...@openoffice.org Tue May 18 15:55:08 + 
2010 ---
target 3.3

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 97421] Writer loops after deletin g invisible recorded changes and Undo

2010-05-18 Thread mst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97421





--- Additional comments from m...@openoffice.org Tue May 18 15:54:17 + 
2010 ---
@majun51:

after not hearing from you for some time,
i've tried to fix the issue myself now.

you were right about the second part of your patch.

because on Undo, the RestoreSection method clears the section pointer (pMvStt),
the Redo implementation must re-create the redline data.

this was not clear to me initially, because this problem only occurs on Redo.

the other half of the fix is a change in AppendRedline,
as described in my previous comment.

thanks for your patch!


-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 83367] XTableCharts::addNewByName does not work with empty name

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


User mba changed the following:

What|Old value |New value

Target milestone|---   |OOo 3.3





--- Additional comments from m...@openoffice.org Tue May 18 15:53:29 + 
2010 ---
target 3.3

-
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: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 78637] Unnessecary long lines in Settings Dialog > Load/Save

2010-05-18 Thread fl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78637





--- Additional comments from f...@openoffice.org Tue May 18 15:41:01 + 
2010 ---
@MBA: No additional comments from my side. Sounds good. 

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 104293] Toggle-able buttons shoul d be exposed as ROLE_TOGGLE_BUTTON

2010-05-18 Thread cd
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104293


User cd changed the following:

What|Old value |New value

 Assigned to|cd|es





--- Additional comments from c...@openoffice.org Tue May 18 15:36:55 + 
2010 ---
cd->es: Please verify again.

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071


User va changed the following:

What|Old value |New value

 Assigned to|va|sba





--- Additional comments from v...@openoffice.org Tue May 18 15:34:42 + 
2010 ---
@sba: [Again ;-)] Please verify. AutoCorr files are attached.

-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071





--- Additional comments from v...@openoffice.org Tue May 18 15:32:30 + 
2010 ---
Created an attachment (id=69518)
en-ZA (now with correct MIME type)


-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071





--- Additional comments from v...@openoffice.org Tue May 18 15:31:17 + 
2010 ---
Created an attachment (id=69517)
mn-MN


-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 111521] Graphic bullets not saved in PowerPoint export (regression)

2010-05-18 Thread sj
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111521


User sj changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from s...@openoffice.org Tue May 18 15:31:04 + 
2010 ---
This issue has been fixed now in cws[sdk321]. Graphical bullets in title and 
outliner objects had been lost.

This has been fixed in sd/source/filter/eppt/epptso.cxx

-
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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071





--- Additional comments from v...@openoffice.org Tue May 18 15:30:55 + 
2010 ---
Created an attachment (id=69516)
en-ZA


-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071





--- Additional comments from v...@openoffice.org Tue May 18 15:30:25 + 
2010 ---
Created an attachment (id=69515)
da-DK


-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071





--- Additional comments from v...@openoffice.org Tue May 18 15:29:46 + 
2010 ---
Created an attachment (id=69514)
af-ZA


-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 109046] OOo 3.2.1 release stopper s / blockers

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=109046



This issue depends on issue 91071, which changed state:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





-
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: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071


User va changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from v...@openoffice.org Tue May 18 15:27:38 + 
2010 ---
Fixed.

-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 21939] Problem with the french fi lter

2010-05-18 Thread cedricbosdo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=21939


User cedricbosdo changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from cedricbo...@openoffice.org Tue May 18 15:19:56 
+ 2010 ---
Fixed by changeset 267795:0ab6b1446897 in cbosdo06

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111684] Missing EndNote / Bibus f ields

2010-05-18 Thread cedricbosdo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111684


User cedricbosdo changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED

Target milestone|---   |OOo 3.3





--- Additional comments from cedricbo...@openoffice.org Tue May 18 15:19:26 
+ 2010 ---
Fixed by changeset 267796:acd40481b13f

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 21939] Problem with the french fi lter

2010-05-18 Thread cedricbosdo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=21939


User cedricbosdo changed the following:

What|Old value |New value

 Assigned to|iss...@wp |cedricbosdo

Target milestone|OOo Later |OOo 3.3





--- Additional comments from cedricbo...@openoffice.org Tue May 18 15:18:28 
+ 2010 ---
taking the 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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread va
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071


User va changed the following:

What|Old value |New value

  Status|NEW   |STARTED





--- Additional comments from v...@openoffice.org Tue May 18 15:17:22 + 
2010 ---
Okay, these files will be fixed, too:

- af-ZA
- da-DK
- en-ZA
- mn-MN

-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 111108] Prefer the classic family name as long as #i79878# is unfixed

2010-05-18 Thread hdu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=08


User hdu changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from h...@openoffice.org Tue May 18 15:09:37 + 
2010 ---
.

-
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: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 111077] integrate Sun contributed narrow font family

2010-05-18 Thread hdu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111077





--- Additional comments from h...@openoffice.org Tue May 18 15:08:34 + 
2010 ---
@es: please verify in CWS narrow01

-
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: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 111682] OOo X11 has been obsolete d by OOoAqua => remove unused module fondu

2010-05-18 Thread pl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111682


User pl changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from p...@openoffice.org Tue May 18 15:08:17 + 
2010 ---
narrowly 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: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 111682] OOo X11 has been obsolete d by OOoAqua => remove unused module fondu

2010-05-18 Thread hdu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111682


User hdu changed the following:

What|Old value |New value

 Assigned to|hdu   |pl





--- Additional comments from h...@openoffice.org Tue May 18 15:06:38 + 
2010 ---
@pl: please verify in CWS narrow01

-
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: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 111577] CVS Access

2010-05-18 Thread ccornell
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111577





--- Additional comments from ccorn...@openoffice.org Tue May 18 15:02:33 
+ 2010 ---
Yes.  The previous key is no longer working/valid.  Reason is unknown.  A new
key was generated.

-
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: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111684] Missing EndNote / Bibus f ields

2010-05-18 Thread cedricbosdo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111684





--- Additional comments from cedricbo...@openoffice.org Tue May 18 15:02:04 
+ 2010 ---
Created an attachment (id=69513)
Test document


-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111684] Missing EndNote / Bibus f ields

2010-05-18 Thread cedricbosdo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111684
 Issue #|111684
 Summary|Missing EndNote / Bibus fields
   Component|Word processor
 Version|DEV300m78
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|cedricbosdo
 Reported by|cedricbosdo





--- Additional comments from cedricbo...@openoffice.org Tue May 18 15:01:07 
+ 2010 ---
This is a follow up issue for issue 61075. Some EndNote / Bibus fields aren't
imported.

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 111682] OOo X11 has been obsolete d by OOoAqua => remove unused module fondu

2010-05-18 Thread hdu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111682


User hdu changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from h...@openoffice.org Tue May 18 14:59:25 + 
2010 ---
Done in CWS narrow01

-
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: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 54906] WW8: table of contents no longer hyperlinks

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





--- Additional comments from m...@openoffice.org Tue May 18 14:55:34 + 
2010 ---
To clean up the mess a bit: in the simple test documents the hyperlinks in the
TOC work in OOo and they also work in the created PDF.

In the csharp spec, the TOC does not have hyperlinks in OOo already.

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 111683] insert image, Export to P DF image wrong size?

2010-05-18 Thread marijndg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111683





--- Additional comments from marij...@openoffice.org Tue May 18 14:53:30 
+ 2010 ---
Created an attachment (id=69512)
the result


-
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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 111683] insert image, Export to P DF image wrong size?

2010-05-18 Thread marijndg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111683
 Issue #|111683
 Summary|insert image, Export to PDF image wrong size?
   Component|Drawing
 Version|1.0.0
Platform|PC
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|editing
 Assigned to|graphicsneedsconfirm
 Reported by|marijndg





--- Additional comments from marij...@openoffice.org Tue May 18 14:52:56 
+ 2010 ---
I insert an image at 128 by 96, in the Draw editor it looks fine,
However, when i export to a PDF file it looks like it has been scaled to the
wrong dimension and looks very pixelated.
have a look at the files.
http://www.macrowizards.co.uk/trial.pdf 
and the original:
http://www.macrowizards.co.uk/image.odg 

The result is a very unprofessional looking image.
For the use of logo's in invoices, as i tried to do, this is a serious issue.

Do have to say I like OOo and use it often.
I appreciate the hard work that has gone into the project and kudos to all at
the development team, 
I however have to look at an alternative at this point.

Thanks for your considerations.

-
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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 39527] Saving Ms-Office documents with password protection

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


User mba changed the following:

What|Old value |New value

  Status|RESOLVED  |REOPENED

  Resolution|FIXED |





--- Additional comments from m...@openoffice.org Tue May 18 14:45:57 + 
2010 ---
sorry, status should not have changed.

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 39527] Saving Ms-Office documents with password protection

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





--- Additional comments from m...@openoffice.org Tue May 18 14:45:06 + 
2010 ---
Unfortunately this issue mixes encryption and protection, but anyway.
First about encryption support.

This has been fixed in OOo 3.2 for xls (issue 84766) and doc (issue 103780).
For ppt there is issue 46307 for loading files with password. I couldn't find an
issue for storing ppt files with password.

Protection of doc and xls files with passwords will be supported in OOo 3.3:
http://www.openoffice.org/issues/buglist.cgi?issue_id=105076+109634+109779+109976+110383
Again I couldn't find anything for Powerpoint.

So perhaps we should close this issue once the protection is available and
create a new issue for Powerpoint. This issue already is a mess.



-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 39527] Saving Ms-Office documents with password protection

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


User mba changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from m...@openoffice.org Tue May 18 14:44:52 + 
2010 ---
Unfortunately this issue mixes encryption and protection, but anyway.
First about encryption support.

This has been fixed in OOo 3.2 for xls (issue 84766) and doc (issue 103780).
For ppt there is issue 46307 for loading files with password. I couldn't find an
issue for storing ppt files with password.

Protection of doc and xls files with passwords will be supported in OOo 3.3:
http://www.openoffice.org/issues/buglist.cgi?issue_id=105076+109634+109779+109976+110383
Again I couldn't find anything for Powerpoint.

So perhaps we should close this issue once the protection is available and
create a new issue for Powerpoint. This issue already is a mess.



-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 111577] CVS Access

2010-05-18 Thread st
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111577


User st changed the following:

What|Old value |New value

  CC|''|'ccornell,st'

 Assigned to|ccornell  |ssh2key

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW





--- Additional comments from s...@openoffice.org Tue May 18 14:43:42 + 
2010 ---
I see there is a key in place for "ggurley".
Should this be replaced?

-
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: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ui-issues] [Issue 111667] Accessibility events miss ing from the Slides pane

2010-05-18 Thread joaniediggs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111667





--- Additional comments from joaniedi...@openoffice.org Tue May 18 14:42:53 
+ 2010 ---
@es: Yup, I tried both m76 and m77 with Orca and Accerciser. With m77, the
events started showing up. But like I commented, not for everything; just those
few slides which had initially been visible.

I did source "Selected Application" (things are a lot more sane that way). Then
ticked focus and object (unchecking bounds-changed because that's an insane 
event).



-
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: issues-unsubscr...@ui.openoffice.org
For additional commands, e-mail: issues-h...@ui.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111574] Importing to and from wor d formatting gets lost

2010-05-18 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111574


User es changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from e...@openoffice.org Tue May 18 14:19:54 + 
2010 ---
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111574] Importing to and from wor d formatting gets lost

2010-05-18 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111574


User es changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from e...@openoffice.org Tue May 18 14:19:38 + 
2010 ---
Feel free to reopen when you have the information needed.

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 111682] OOo X11 has been obsolete d by OOoAqua => remove unused module fondu

2010-05-18 Thread hdu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111682


User hdu changed the following:

What|Old value |New value

  Status|NEW   |STARTED

 Summary|OOo X11 has been obsoleted|OOo X11 has been obsoleted
| by OOoAqua => remove fond| by OOoAqua => remove unus
|u |ed module fondu

Target milestone|---   |OOo 3.3





--- Additional comments from h...@openoffice.org Tue May 18 14:17:02 + 
2010 ---
.

-
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: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 109046] OOo 3.2.1 release stopper s / blockers

2010-05-18 Thread sba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=109046



This issue depends on issue 91071, which changed state:

What|Old value |New value

  Status|RESOLVED  |REOPENED

  Resolution|FIXED |





-
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: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread sba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071


User sba changed the following:

What|Old value |New value

  Status|RESOLVED  |REOPENED

  Resolution|FIXED |





--- Additional comments from s...@openoffice.org Tue May 18 14:16:13 + 
2010 ---
Issue reopened.

-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[l10n-issues] [Issue 91071] Better Polish AutoCorrect File

2010-05-18 Thread sba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91071


User sba changed the following:

What|Old value |New value

  CC|'md,milek_pl,sba,va'  |'mav,mba,md,milek_pl,os,sb
|  |a,va'

 Assigned to|sba   |va

  Status|REOPENED  |NEW





--- Additional comments from s...@openoffice.org Tue May 18 14:18:15 + 
2010 ---
Adding some CCs.
SBA->VA: Please proceed.
Reassigned to VA.


-
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 106004] Enlarge Formula Selection title bar

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


User mru changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from m...@openoffice.org Tue May 18 14:04:46 + 
2010 ---
Verified in CWS tl80.

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 111573] Right-mouse button has a very slow reaction or fail to open the in-cont ext menu

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





--- Additional comments from m...@openoffice.org Tue May 18 14:03:34 + 
2010 ---
Yes, that's what I also suggest - try to disable one-by-one. Maybe some of these
Extensions need to be updated to be 3.2-compatible.

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 99402] "RapairPackage" vs "Repair Package"

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


User mba changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED

Target milestone|---   |OOo 3.3





--- Additional comments from m...@openoffice.org Tue May 18 14:03:08 + 
2010 ---
Good catch. 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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 80660] createdate field in word s hows todays date in openoffice

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


User mba changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from m...@openoffice.org Tue May 18 13:58:42 + 
2010 ---
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 80660] createdate field in word s hows todays date in openoffice

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


User mba changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from m...@openoffice.org Tue May 18 13:58:20 + 
2010 ---
As I couldn't reproduce the error as proven by the attached screen shot and
didn't receive any new input, I close this issue as "WFM".

-
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



  1   2   >