[sc-issues] [Issue 117039] delete row has no undo in attached document

2011-02-21 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=117039
 Issue #|117039
 Summary|delete row has no undo in attached document
   Component|Spreadsheet
 Version|DEV300m99
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|editing
 Assigned to|spreadsheet
 Reported by|regina





--- Additional comments from reg...@openoffice.org Mon Feb 21 12:48:06 
+ 2011 ---
Open attached document.
View - Page Break Preview.
Click on row header of row 16.
Right-click on row header of row 16.
Choose delete row.
Notice, that you cannot undo that action, neither via toolbar nor with shortcut.

-
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 117039] delete row has no undo in attached document

2011-02-21 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=117039





--- Additional comments from reg...@openoffice.org Mon Feb 21 12:48:50 
+ 2011 ---
Created an attachment (id=75906)
delete row has no undo


-
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 75279] improvement for BINOMDIST

2011-02-20 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75279





--- Additional comments from reg...@openoffice.org Sun Feb 20 21:19:52 
+ 2011 ---
Created an attachment (id=75895)
Patch against DEV300m100, comments in issue and file testCases


-
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 75279] improvement for BINOMDIST

2011-02-20 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75279





--- Additional comments from reg...@openoffice.org Sun Feb 20 21:20:48 
+ 2011 ---
Created an attachment (id=75896)
commented test cases for B and BINOMDIST


-
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 75279] improvement for BINOMDIST

2011-02-20 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75279


User regina changed the following:

What|Old value |New value

  Issue type|ENHANCEMENT   |PATCH





--- Additional comments from reg...@openoffice.org Sun Feb 20 21:25:17 
+ 2011 ---
Problems and solutions
==
For illustrations see the attached document testCases.ods.

1.
Getting zero in GetBetaDist doesn't come from lcl_GetBetaHelperContFrac but
because of missing an underflow case. I have added that case.

2.
When q^n and p^n both underflow, the value of BINOMDIST or B respectively is
calculated by approximation with beta distribution. This gives an accuracy of
about 13 decimal digits. This is the really new part in my patch. [Sheet no 
value]

3.
When p is near 1 then q=1-p has severe cancellation errors. But nothing can be
done, because when the interpreter gets the value p it is already in binary
double and the correct decimal value cannot be reconstructed. [Sheet small n]

4.
The current solution has a line fSum = 1.0-fFactor and than subtracts values in
a loop. This leads to errors, when fFactor machine epsilon. I detect this case
and use sum up instead. [Sheet constant value]

5.
The sum up parts can result in values greater than 1. Such values are impossible
for cumulative distribution functions. I force the value to 1 in those cases.
[Sheet illegal value]

6.
The mass function is used inside BINOMDIST and in B. Therefore I separate it
into a method. It cannot be a local function because it uses GetBetaDistPDF.

7.
Summing up values of a range is used inside B and inside BINOMDIST. Therefore I
separate is into the local function lcl_GetBinomDistRange

8.
I have changed ULONG (now sal_uLong) to sal_int32. This will work-and has until
now-, because higher values of n will not reach the for-loop because p^n and q^n
will underflow.

9.
The current version calculates with denormalized values of fFactor. This gives
wrong results for fFactor near zero. I use the threshold
::std::numeric_limitsdouble::min() instead. [Sheet B range]

10.
Calculations near the thresholds ::std::numeric_limitsdouble::min() and
fMachEps might not be optimal. But I think, that it is not worth to detect
whether for example 1E-308 would be a better threshold than
::std::numeric_limitsdouble::min().

11.
Calculation of cases B(n;p;n-k;n) are wrong in case q^n underflow. In this cases
the summand p^n is missing. I have rewritten the loops and initializations in
lcl_GetBinomDistRange. I use:
sum from j=xs to xe {(n choose j) * (q/p)^(n-j) * p^n}
=sum from j=xs to xe {(n choose n-j) * (q/p)^(n-j) * p^n}  substitute i=n-j
=sum from i=n-xe to n-xs { (n choose i) * (q/p)^i * p^n}
[Sheet B range]

-
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



[sw-issues] [Issue 116988] [non-pro] Error: Could not find fly frame

2011-02-16 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116988





--- Additional comments from reg...@openoffice.org Wed Feb 16 22:28:33 
+ 2011 ---
Created an attachment (id=75851)
non-pro assertion failed when opening 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 116988] [non-pro] Error: Could not find fly frame

2011-02-16 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116988
 Issue #|116988
 Summary|[non-pro] Error: Could not find fly frame
   Component|Word processor
 Version|DEV300m100
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|writerneedsconfirm
 Reported by|regina





--- Additional comments from reg...@openoffice.org Wed Feb 16 22:27:14 
+ 2011 ---
Open the attached document.
I get 9 times error:
Error: Assertion failed
===
FILE : C:/DEV300m100my/sw/source/ui/wrtsh/wrtsh1.cxx at line 903
ERROR: Could not find fly frame.

-
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 116920] Sometimes RND returns 1 (one)

2011-02-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116920


User regina changed the following:

What|Old value |New value

  CC|'helen_russian,rail'  |'helen_russian,rail,regina
|  |'





--- Additional comments from reg...@openoffice.org Sun Feb 13 13:39:05 
+ 2011 ---
ScRandom() in interpr1.cxx has been changed to return values from [0;1[ with
issue 53642. I think, that Basic should return the same range as Calc.
ScRandom() uses  PushDouble((double)rand() / ((double)RAND_MAX+1.0));

For VB you find the description The Rnd function returns a value less than 1,
but greater than or equal to zero.
[http://msdn.microsoft.com/en-us/library/f7s023d2(VS.90).aspx#Y1057]

-
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



[graphics-issues] [Issue 116923] Copying a Math object from Writer to Draw give initially too large size

2011-02-11 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116923


User regina changed the following:

What|Old value |New value

  CC|'wg'  |'regina,wg'





--- Additional comments from reg...@openoffice.org Fri Feb 11 13:10:14 
+ 2011 ---
I guess, it has the same reason as issue 98753. 

-
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 82802] legend line samples too small to distinguish line dashes

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82802


User regina changed the following:

What|Old value |New value

  CC|'iha' |'iha,regina'

  Status|RESOLVED  |VERIFIED





--- Additional comments from reg...@openoffice.org Tue Feb  8 19:07:05 
+ 2011 ---
The legend key becomes 1,6cm wide, so the different dash/dot lines can be
distinguished well.
The legend key width becomes 60% of font size for large font sizes. You will
notice it not for font sizes smaller than 76pt, because 1,6cm is the minimum
width, if at least one data series has got a dash/dot line.

I have tested it with the attached documents and with own documents, using Calc
and Draw.
So I set it to verified in CWS chart52.

(I don't know, whether I should change owner back to iha.)

-
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 68029] The Mean line is not shown in the legend

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68029


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from reg...@openoffice.org Tue Feb  8 20:07:53 
+ 2011 ---
The mean line is shown in the legend now. The legend key of the mean line is
horizontal and handled like other lines. The legend text is Mean followed by
data series name in round brackets.

Test document will be attached.

Verified in CWS chart52.

-
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 68029] The Mean line is not shown in the legend

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68029





--- Additional comments from reg...@openoffice.org Tue Feb  8 20:09:20 
+ 2011 ---
Created an attachment (id=75799)
Document with mean line in legend


-
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 68029] The Mean line is not shown in the legend

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68029


User regina changed the following:

What|Old value |New value

 Assigned to|kla   |regina





--- Additional comments from reg...@openoffice.org Tue Feb  8 20:10:39 
+ 2011 ---
Take it to watch integration.

-
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 89539] Inconsistent naming of Regression / Trend Line in the legend

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89539


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from reg...@openoffice.org Tue Feb  8 20:21:01 
+ 2011 ---
The legend key is horizontal now. The legend text is Linear, Exponential ,
Logarithmic, or Power depending on kind, followed by the data series name in
round brackets.

Test document will be attached.

Verified in CWS chart52.

-
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 89539] Inconsistent naming of Regression / Trend Line in the legend

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89539





--- Additional comments from reg...@openoffice.org Tue Feb  8 20:22:52 
+ 2011 ---
Created an attachment (id=75800)
See second sheet for all four names


-
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 89539] Inconsistent naming of Regression / Trend Line in the legend

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89539


User regina changed the following:

What|Old value |New value

 Assigned to|kla   |regina





--- Additional comments from reg...@openoffice.org Tue Feb  8 20:23:36 
+ 2011 ---
Take it to watch integration.

-
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 71294] new Chart: Size of Legendsymbols

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=71294


User regina changed the following:

What|Old value |New value

  CC|'pagalmes'|'pagalmes,regina'





--- Additional comments from reg...@openoffice.org Tue Feb  8 21:17:04 
+ 2011 ---
Are you sure? I see no difference when opening the xls-file in DEV300m99.
Opening the xls-file in Excel shows smaller symbols.

I will attache an ods-file with the original charts and screenshots of them and
the exported xls-file. Opening the xls-file you can compare the result with the
screenshots.



-
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 71294] new Chart: Size of Legendsymbols

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=71294





--- Additional comments from reg...@openoffice.org Tue Feb  8 21:18:12 
+ 2011 ---
Created an attachment (id=75801)
Original document including sreenshots unter DEV300m99


-
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 71294] new Chart: Size of Legendsymbols

2011-02-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=71294





--- Additional comments from reg...@openoffice.org Tue Feb  8 21:19:20 
+ 2011 ---
Created an attachment (id=75802)
Exported to xls


-
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 28670] implement explicit resize of legend

2011-02-07 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=28670





--- Additional comments from reg...@openoffice.org Mon Feb  7 21:11:39 
+ 2011 ---
Created an attachment (id=75787)
Testdocuments and test descriptions and intermediate results


-
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 114306] Print dialog ignores previous printer settings - settings are not saved with document anymore

2011-02-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114306


User regina changed the following:

What|Old value |New value

  CC|'hi,md,pl'|'hi,md,pl,regina'





--- Additional comments from reg...@openoffice.org Sun Feb  6 13:11:45 
+ 2011 ---
cc me

-
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 116681] Light source broken for 3D Scatter Chart after save/reload

2011-02-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116681


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Sun Feb  6 15:13:19 
+ 2011 ---
I see the same error in 3D stacked columns. Reason is, that light sources 2 to 8
are on, but should be off.

-
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



[sc-issues] [Issue 116837] Calc Not Printing Manual Page Breaks

2011-02-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116837


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from reg...@openoffice.org Sun Feb  6 18:52:37 
+ 2011 ---
That problem has been submitted already.

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

-
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 116819] Manual Page Break (Row Break) cannot be adjusted

2011-02-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116819





--- Additional comments from reg...@openoffice.org Sun Feb  6 18:52:37 
+ 2011 ---
*** Issue 116837 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...@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 116837] Calc Not Printing Manual Page Breaks

2011-02-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116837


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from reg...@openoffice.org Sun Feb  6 18:53:17 
+ 2011 ---
closing duplicate

-
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 116819] Manual Page Break (Row Break) cannot be adjusted

2011-02-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116819


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW





--- Additional comments from reg...@openoffice.org Sun Feb  6 18:55:14 
+ 2011 ---
The problem exists as described.

-
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 116824] Line of ColumnLine Chart is not shown when import from xls

2011-02-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116824
 Issue #|116824
 Summary|Line of ColumnLine Chart is not shown when import fro
|m xls
   Component|Chart
 Version|DEV300m99
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|kla
 Reported by|regina





--- Additional comments from reg...@openoffice.org Sat Feb  5 17:38:01 
+ 2011 ---
Open attached file. The chart should show a red line in front of the column
rectangles. The data is there, but the line is not shown.

-
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 116824] Line of ColumnLine Chart is not shown when import from xls

2011-02-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116824





--- Additional comments from reg...@openoffice.org Sat Feb  5 17:38:46 
+ 2011 ---
Created an attachment (id=75774)
Chart with column and lines


-
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 116825] The category is lost when import from xlsx

2011-02-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116825
 Issue #|116825
 Summary|The category is lost when import from xlsx
   Component|Chart
 Version|DEV300m99
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|kla
 Reported by|regina





--- Additional comments from reg...@openoffice.org Sat Feb  5 17:41:29 
+ 2011 ---
Open attached document. It should show JAN to DEC on the category axis, but
shows the default 1..12. Look at the data range and you will notice, that the
category is lost. It should be the first row.

-
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 116825] The category is lost when import from xlsx

2011-02-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116825





--- Additional comments from reg...@openoffice.org Sat Feb  5 17:42:44 
+ 2011 ---
Created an attachment (id=75775)
Chart with column and line


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

-
To unsubscribe, e-mail: 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 116739] Need to insert tables and graphics into a OOo Math formula

2011-02-02 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116739


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Wed Feb  2 08:10:05 
+ 2011 ---
Usually people work the other way round. For example I have a Writer document
and there I arrange and combine formulas and graphics, or I put a formula to a
cell in a Calc document.

Currently formulas are stored as MathML. I see no way to store tables into it
and graphics only in misuse of the mglyph element. I favor to set the request to
wontfix.

-
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 116769] Changing default fill color does not save it

2011-02-02 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116769


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Wed Feb  2 19:34:13 
+ 2011 ---
jammasterjay29: You described how to set the fill color to an existing single
drawing object. To change the fill color (and other settings) for _all_ new
objects, you have the modify the 'default' graphic style. And if you want this
changes in all new documents, define a document template with this settings,
save it, and set it as default template. 

-
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 116671] Background is lost, when importing single slide

2011-01-28 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116671





--- Additional comments from reg...@openoffice.org Fri Jan 28 10:28:14 
+ 2011 ---
I do not use copypaste but Insert  File. But copypaste does neither work
here. I'm on WinXP with German OOo3.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...@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



[sc-issues] [Issue 116691] Display formulas doesn't work

2011-01-28 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116691


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW





--- Additional comments from reg...@openoffice.org Fri Jan 28 21:38:51 
+ 2011 ---
I can confirm it. It is OK in DEV300m78 and broken in DEV300m82. I've not got
versions between to test it there. I work on WinXP.

-
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 116668] objects disappear when pasting slide between presentations

2011-01-27 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116668


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW





--- Additional comments from reg...@openoffice.org Thu Jan 27 19:44:56 
+ 2011 ---
The drawings are still there, but the line style has been set to invisible.

I see the error already in OOo3.2.1. I doubt, that it has been unnoticed until
now, but I do not find a duplicate issue.

The background is lost too, but that's a new error and I will write a separate
issue for 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...@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 116671] Background is lost, when importing single slide

2011-01-27 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116671
 Issue #|116671
 Summary|Background is lost, when importing single slide
   Component|Presentation
 Version|OOo 3.3 RC10
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|graphicsneedsconfirm
 Reported by|regina





--- Additional comments from reg...@openoffice.org Thu Jan 27 19:48:58 
+ 2011 ---
Import a slide as described in issue 116668 using the files attached there.
Notice, that the inserted slide has lost the background picture. That has been
OK in OOo3.2.1 and is a regression.

-
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 116644] abuse user c4229818

2011-01-26 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116644


User regina changed the following:

What|Old value |New value

 Assigned to|ama   |issues@www

   Component|Word processor|www

  Issue type|PATCH |TASK

  QA contact|issues@sw |issues@www

 Summary|starmath: |abuse user c4229818

Subcomponent|code  |openoffice.org IssueTracke
|  |r

 Version|1.0.0 |current





--- Additional comments from reg...@openoffice.org Wed Jan 26 18:58:28 
+ 2011 ---
spam attachments

-
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



[www-issues] [Issue 116644] abuse user c4229818

2011-01-26 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116644


User regina changed the following:

What|Old value |New value

 Assigned to|ama   |issues@www

   Component|Word processor|www

  Issue type|PATCH |TASK

  QA contact|issues@sw |issues@www

 Summary|starmath: |abuse user c4229818

Subcomponent|code  |openoffice.org IssueTracke
|  |r

 Version|1.0.0 |current





--- Additional comments from reg...@openoffice.org Wed Jan 26 18:58:28 
+ 2011 ---
spam attachments

-
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



[sc-issues] [Issue 116553] axis color reverts to default gray from black

2011-01-24 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116553


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

Keywords|  |oooqa





--- Additional comments from reg...@openoffice.org Mon Jan 24 12:50:48 
+ 2011 ---
I see the described error in OOo3.2 but no longer in DEV300m95. Please try the
next version OOo3.3.0RC10 or the actual DEV build from
http://download.openoffice.org/

-
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 116564] RANK should work on non-contiguous data

2011-01-22 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116564


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

Keywords|  |needmoreinfo, oooqa





--- Additional comments from reg...@openoffice.org Sat Jan 22 20:46:16 
+ 2011 ---
The second parameter of the RANK function is a NumberSequenceList (as in a lot
of other functions). Such list will be converted from a ReferenceList. A
ReferenceList is build from references which are concatenated with the Operator 
~.
For example for getting the RANK of 7 in the numbers in A1:B3 and C7:C10 you 
can use
=RANK(7;A1:B3~C7:C10)

Do you request, that when using Ctrl plus mouse drag, the operator ~ is inserted
automatically? Or what behavior do you request? Please be aware, that the syntax
of functions is bound to the ODF specification.



-
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 116564] RANK request for non-contiguous data select with ctrl mouse click

2011-01-22 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116564


User regina changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Keywords|needmoreinfo, oooqa   |oooqa

 Summary|RANK should work on non-co|RANK request for non-conti
|ntiguous data |guous data select with ctr
|  |l mouse click





--- Additional comments from reg...@openoffice.org Sat Jan 22 22:34:41 
+ 2011 ---
requirement

-
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 75279] improvement for BINOMDIST

2011-01-22 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75279





--- Additional comments from reg...@openoffice.org Sat Jan 22 23:05:44 
+ 2011 ---
In theory it should work with
   PushDouble(GetBetaDistPDF(p, x+1.0, n-x+1.0)/(n+1));
in probability mass function case and with
   PushDouble(GetBetaDist(1.0-p,n-x,x+1));
in cumulative distribution function case. For probability mass function that
works well, but for cumulative distribution function there are some zeros, where
there should not be zeros, although this solution is already better than the
current implementation.
I suspect an underflow, likely in lcl_GetBetaHelperContFrac, but I have not
investigate it 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...@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 103935] ImageMap - unable to assign macros

2011-01-20 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103935


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Thu Jan 20 14:50:55 
+ 2011 ---
I can confirm, that it neither works in Draw/Impress nor in Calc. It works in
Writer. I use DEV300m95 on WinXP.
Not Work means, that the macro is not started, when the mouse is over the hot
spot, but shows only a link cursor.

-
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



[sc-issues] [Issue 110384] Extremely slow scrolling in calc when charts are displayed

2011-01-19 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110384


User regina changed the following:

What|Old value |New value

  CC|'aw,brinzing,cornouws,hdu,|'aw,brinzing,cornouws,hdu,
|iha,pl,raal,vitriol'  |iha,pl,raal,regina,vitriol
|  |'





--- Additional comments from reg...@openoffice.org Wed Jan 19 23:08:02 
+ 2011 ---
I notice that movement of charts is slower in OOo3.3 than in OOo3.2. This is
independent of the settings for antialiasing. It is not impossible to move the
chart, but it makes no fun to wait two seconds till the graphic is on its new
place. Refresh of the screen while scrolling is affected too. A smooth scrolling
with the slider is not possible in the new OOo3.3 version.

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

-
To unsubscribe, e-mail: 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 108739] API: Shear angle has mathematically wrong orinentation

2011-01-18 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=108739


User regina changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |94403
  is|  |





-
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 94403] Graphic Objects with transformations are loaded wrong.

2011-01-18 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94403


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

 IssuesThisDependsOn|  |108739

Keywords|  |oooqa





--- Additional comments from reg...@openoffice.org Tue Jan 18 16:31:54 
+ 2011 ---
Unfortunately it has been found, that the errors with the transformation matrix
cannot be easily fixed, but need a complete redesign of the graphic objects.
This is ongoing work. You find some comments on the progress in i108739. The
work is done in CWS aw080. You can watch it in source
http://hg.services.openoffice.org/cws/aw080/ or in EIS
http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300%2Faw080

I've added a dependency, so that this issue will not be forgotten in the tests.

-
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



[sc-issues] [Issue 75279] improvement for BINOMDIST

2011-01-18 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75279





--- Additional comments from reg...@openoffice.org Tue Jan 18 21:29:54 
+ 2011 ---
In the meantime the Beta function has been implemented. It can be used for
higher number of trials. For example for probability mass function:
PushDouble( exp( x*log(p)+(n-x)*log(q)-log(n+1.0)-GetLogBeta(n-x+1.0,x+1.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...@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 75279] improvement for BINOMDIST

2011-01-18 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75279





--- Additional comments from reg...@openoffice.org Tue Jan 18 21:36:35 
+ 2011 ---
Created an attachment (id=75585)
Screenshot to compare OOo with Gnumeric


-
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 75279] improvement for BINOMDIST

2011-01-18 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75279





--- Additional comments from reg...@openoffice.org Tue Jan 18 21:40:48 
+ 2011 ---
The attached document shows some critical values as chart. The document contains
a picture with the same chart in Gnumeric, where can see, that it should be a
straight line.
(The spreadsheet contains a function TTT in which I have tested the mentioned
solution with the Beta function. That will give no results for you.)

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

-
To unsubscribe, e-mail: 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 116475] Open Office v3.2 will not open

2011-01-16 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116475





--- Additional comments from reg...@openoffice.org Sun Jan 16 14:37:41 
+ 2011 ---
@brinzing: Please add your information to issue 114963.

-
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 114963] multiple instances of soffice.exe

2011-01-15 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114963





--- Additional comments from reg...@openoffice.org Sun Jan 16 00:10:15 
+ 2011 ---
*** Issue 116475 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...@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



[sc-issues] [Issue 116475] Open Office v3.2 will not open

2011-01-15 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116475


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Status|UNCONFIRMED   |RESOLVED

Keywords|  |oooqa

  Resolution|  |DUPLICATE

 Summary|Open Office v3.2 wil not o|Open Office v3.2 will not 
|pen   |open





--- Additional comments from reg...@openoffice.org Sun Jan 16 00:10:18 
+ 2011 ---
Several people have reported such problems, see issue 114963. But we cannot fix
the problem until there is a _reproducible_ scenario to investigate the reason. 

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

-
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 116475] Open Office v3.2 will not open

2011-01-15 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116475


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from reg...@openoffice.org Sun Jan 16 00:10:58 
+ 2011 ---
closing, duplicate

-
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 116455] toolbar setting Icons text is not persistent.

2011-01-14 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116455





--- Additional comments from reg...@openoffice.org Fri Jan 14 23:24:11 
+ 2011 ---
Created an attachment (id=75566)
Oops, toolbar was not embedded. Now the correct file with embedded toolbar


-
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 116435] Custom effect 'change line color' is broken

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116435


User regina changed the following:

What|Old value |New value

Keywords|  |regression





--- Additional comments from reg...@openoffice.org Thu Jan 13 15:43:20 
+ 2011 ---
I see the error first in DEV300m58. In DEV300m57 and in OOo3.2 the custom
animation is OK.

-
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 116435] Custom effect 'change line color' is broken

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116435





--- Additional comments from reg...@openoffice.org Thu Jan 13 16:08:25 
+ 2011 ---
change from error 'wrong additional border line with diagonal, correct color' to
error 'wrong additional border line without diagonal, wrong color' is between
m73 and m75. 

-
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



[sc-issues] [Issue 116432] defect customizing a toolbar with icons

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116432





--- Additional comments from reg...@openoffice.org Thu Jan 13 17:44:22 
+ 2011 ---
I cannot reproduce your problem. Click on the triangle at the right edge of the
toolbar, which contains the icon. Choose Customize toolbar from drop-down
list. Does that work for you?

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

-
To unsubscribe, e-mail: 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 116432] defect customizing a toolbar with icons for a macro call command

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116432


User regina changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Keywords|needmoreinfo, oooqa   |oooqa

 Summary|defect customizing a toolb|defect customizing a toolb
|ar with icons |ar with icons for a macro 
|  |call command





--- Additional comments from reg...@openoffice.org Thu Jan 13 19:07:39 
+ 2011 ---
OK, I think, now I have got your problem.

There is a special behavior for a toolbar item, which calls a macro.

To reproduce the problem:
Customize a toolbar, so that you insert an item to call a macro. Ok.
Notice, the default entry is the macro name.

Open customize-dialog of the toolbar, click on the macro item, then on Modify.
Chose Change icon and select an arbitrary one. OK.
Notice, the toolbar item shows the icon.

Open customize-dialog of the toolbar, click on the macro item, then on Modify.
Notice, that the entry Restore default command is disabled.

Expected behavior: The entry Restore default command is enabled and a click on
it will remove the icon.

Do the same with another command like Edit macro. Here the entry Restore
default command works as expected. You can test it with the attached 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...@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 116432] defect customizing a toolbar with icons for a macro call command

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116432





--- Additional comments from reg...@openoffice.org Thu Jan 13 19:12:40 
+ 2011 ---
Created an attachment (id=75556)
testdocument for to try to remove the icon


-
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 116432] defect customizing a toolbar with icons for a macro call command

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116432


User regina changed the following:

What|Old value |New value

   Component|Spreadsheet   |framework

  QA contact|issues@sc |issues@framework





--- Additional comments from reg...@openoffice.org Thu Jan 13 19:23:58 
+ 2011 ---
change component to framework, because all modules are affected.

-
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 116432] defect customizing a toolbar with icons for a macro call command

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116432


User regina changed the following:

What|Old value |New value

   Component|Spreadsheet   |framework

  QA contact|issues@sc |issues@framework





--- Additional comments from reg...@openoffice.org Thu Jan 13 19:23:58 
+ 2011 ---
change component to framework, because all modules are affected.

-
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 116455] toolbar setting Icons text is not persistent.

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116455
 Issue #|116455
 Summary|toolbar setting Icons  text is not persistent.
   Component|framework
 Version|DEV300m95
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|tm
 Reported by|regina





--- Additional comments from reg...@openoffice.org Thu Jan 13 19:40:30 
+ 2011 ---
Open attached document.
Open “Customize” dialog of the toolbar “MyMacro”. (It should flow.)
Click on “Toolbar” in the upper dialog part.
Choose “Icons  Text”. OK
Save document.
Reload.
Notice, the toolbar setting has changed to “Icons only”.

-
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 116455] toolbar setting Icons text is not persistent.

2011-01-13 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116455





--- Additional comments from reg...@openoffice.org Thu Jan 13 19:42:18 
+ 2011 ---
Created an attachment (id=75557)
document to test toolbar setting


-
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



[sc-issues] [Issue 116432] defect customizing a tool bar with icons

2011-01-12 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116432


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

Keywords|  |needmoreinfo, oooqa





--- Additional comments from reg...@openoffice.org Wed Jan 12 18:13:38 
+ 2011 ---
What do you mean by suppress the icon?

What do you mean by select the icon? What do you want to achieve?

If you want only text for the toolbar, then select Text only in Tools 
Customize  Toolbars  Toolbar (drop down). To remove an icon from an item, that
has no icon as default, select Restore default command from Tools  Customize
 Toolbars  Modify (drop down).

-
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 116435] Custom effect 'change lin e color' is broken

2011-01-12 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116435
 Issue #|116435
 Summary|Custom effect 'change line color' is broken
   Component|Presentation
 Version|DEV300m58
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|viewing
 Assigned to|graphicsneedsconfirm
 Reported by|regina





--- Additional comments from reg...@openoffice.org Wed Jan 12 19:46:34 
+ 2011 ---
Start new presentation.
Draw a star and set line color to yellow.
Apply to it the custom effect Change line color from group Emphasis.
Select effect line color light blue.
Play the effect.

Notice, that not only the yellow line becomes blue, but an rectangle is drawn
around the star and a half diagonal.

In OOo330RC8 the effect is still broken, there is no half diagonal, but the
rectangle is still there and the color do not change to blue but to black.

-
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 109758] Creating Document from Te mplate: wrong background graphic url

2011-01-11 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=109758


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Tue Jan 11 20:48:38 
+ 2011 ---
I notice the same for other pictured too, which are linked in the template,
OOo3.1 has the correct path in the generated document, OOo3.2 sets the path
relative to the new document, not to the template.

-
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



[installation-issues] [Issue 116210] Internal Error 2203 with special administrative installation

2011-01-10 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116210





--- Additional comments from reg...@openoffice.org Mon Jan 10 17:32:20 
+ 2011 ---
It's the scenario of testing developer snapshots: Put all things together in one
folder and delete or archive it, when the next one is out.

I will not object, when you decide this as wontfix. The error can be easily
worked around and people, who do administrative installations, should be able to
find reason and workaround here in Issuezilla. 

-
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 116363] Do not stretch Logo in In stallation Wizard

2011-01-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116363
 Issue #|116363
 Summary|Do not stretch Logo in Installation Wizard
   Component|Installation
 Version|DEV300m96
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|ui
 Assigned to|of
 Reported by|regina





--- Additional comments from reg...@openoffice.org Sat Jan  8 17:03:46 
+ 2011 ---
The pictures with text ORACLE and OpenOffice.org and seagull logo are stretched
in the installation wizard. That is ugly, because they are bitmaps, see attached
screenshots.
Suggestion: Use a white background and pictures in original size.

-
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 116363] Do not stretch Logo in In stallation Wizard

2011-01-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116363





--- Additional comments from reg...@openoffice.org Sat Jan  8 17:06:43 
+ 2011 ---
Created an attachment (id=75503)
Picture on the left side in installation wizard


-
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 116363] Do not stretch Logo in In stallation Wizard

2011-01-08 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116363





--- Additional comments from reg...@openoffice.org Sat Jan  8 17:07:24 
+ 2011 ---
Created an attachment (id=75504)
top right logo in installation wizard


-
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



[sc-issues] [Issue 116353] Formula Results not Displ aying

2011-01-07 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116353


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Status|UNCONFIRMED   |RESOLVED

Keywords|  |oooqa

  Resolution|  |INVALID





--- Additional comments from reg...@openoffice.org Fri Jan  7 21:59:37 
+ 2011 ---
This is not a bug report but a support request.

It is likely, that the cell with the formula was formatted as text when you
entered the formula.
Try this: Cut formula(Ctrl-X), default formatting (Ctrl-M), open paste drop down
list from symbol bar and paste as unformatted text.

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

-
To unsubscribe, e-mail: 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



[sw-issues] [Issue 116335] Page count higher than ex isting pages

2011-01-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116335


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Status|UNCONFIRMED   |RESOLVED

Keywords|  |oooqa

  Resolution|  |INVALID





--- Additional comments from reg...@openoffice.org Thu Jan  6 18:45:56 
+ 2011 ---
This is a support request, but not a bug report.

You have empty pages, which are generated because somewhere in your document a
even page number follows an even number (or odd on odd or left page on left page
or right page on right page).
If yo understand German, the page http://www.ooowiki.de/SeitenNummerierung might
help understanding.

If this is not the reason, reopen the issue and attach a document, which shows
the error.

-
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 116335] Page count higher than ex isting pages

2011-01-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116335


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from reg...@openoffice.org Thu Jan  6 18:47:25 
+ 2011 ---
closing, no bug

-
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 116337] Excel file imported from a propietary software cannot open on OpenOffic e but it opens in Microsoft Excel.

2011-01-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116337


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Keywords|  |oooqa

Priority|P1|P3





--- Additional comments from reg...@openoffice.org Fri Jan  7 00:38:24 
+ 2011 ---
If I try to open the document with a DEV300m95 non-pro build I get error 
messages:
Error: ScfProgressBar::ProgressAbs -segment overflow From File
C:/DEV300m95my/sc/source/filter/ftools/fprogressbar.cxx at Line 194
until the debug window becomes unresponsive and has to be killed via task 
manager.

I have then opened and saved the document with Excel2007 without any changes.
Opening that file I get the error:
Error: XclAddressConverterBase::XclAddressConverterBase - invalid max row From
File C:/DEV300m95my/sc/source/filter/excel/xladdress.cxx at Line 142
But then this file opens.


-
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 116338] Fontwork works strangely with drawing objects in Calc

2011-01-06 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116338


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

 Summary|Fotwork works strangely wi|Fontwork works strangely w
|th drawing objects in Calc|ith drawing objects in Cal
|  |c





--- Additional comments from reg...@openoffice.org Fri Jan  7 00:46:46 
+ 2011 ---
It behaves the same way as it has since the beginning. It is the way (old)
fontwork is designed. I do not see any error.



-
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 116312] Error: Unacceptable param eters are provided in Save request!

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116312


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Wed Jan  5 13:32:21 
+ 2011 ---
Likely the same as issue 116025.

-
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 116233] Scroll bars persist while editing math formula

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116233


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Wed Jan  5 15:41:02 
+ 2011 ---
I can reproduce it with DEV300m95 and with OOo3.3RC8 on WinXP, but not in Writer
but in Draw.
1. Insert formula in Draw.
2. Write in commands window a=b+c
3. Set cursor before b (in commands window) and write int followed by blank. A
integral sign appears. That is already flickery, but formula will resize.
4. Now set cursor before c and write int followed by blank.
Now you have persistent scroll bars and the formula do not resize.

-
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 116315] chopped lines and bad pdf

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116315


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

Keywords|  |needmoreinfo, oooqa





--- Additional comments from reg...@openoffice.org Wed Jan  5 17:37:25 
+ 2011 ---
I think that the problems are caused by the fonts. The lines contain some parts
with Courier 10 pitch among Bitstream Vera Serif. It seems, that the
Courier 10 pitch font is slightly larger than Bitstream Vera Serif.
Unfortunately you havened used character style for the different parts, so a
quick exchange is not possible.

I get an uneven line spacing but not that extreme one. I use DEV300m95 on WinXP,
but I haven't got the font Courier 10 pitch and the replacement font might
work better.
When I reformat the Courier 10 pitch formatted parts with another font, for
example Bitstream Vera Sans, then the spacing is OK.

You should consider to use other fonts, for example the DejaVu-fonts. They are
shipped with the current versions of OOo.

In addition I saw wrong cursor movement too. It skips Vxmax in up or down
movements, but I cannot force this behavior.

Where do you get the font Courier 10 pitch? Is it a free font, so that you can
attach the font file here?


-
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 116315] chopped lines and bad pdf

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116315


User regina changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from reg...@openoffice.org Wed Jan  5 18:21:34 
+ 2011 ---
So I will close it for now. Tip: If you paste something from outside, you should
paste it as unformatted text and format it afterwards.

-
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 116315] chopped lines and bad pdf

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116315


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from reg...@openoffice.org Wed Jan  5 18:22:01 
+ 2011 ---
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



[graphics-issues] [Issue 116318] axial gradient has wrong border in presentation mode

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116318





--- Additional comments from reg...@openoffice.org Wed Jan  5 21:21:44 
+ 2011 ---
Created an attachment (id=75474)
Palette with some gradients for testing


-
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 116318] axial gradient has wrong border in presentation mode

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116318
 Issue #|116318
 Summary|axial gradient has wrong border in presentation mode
   Component|Presentation
 Version|DEV300m77
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|viewing
 Assigned to|graphicsneedsconfirm
 Reported by|regina





--- Additional comments from reg...@openoffice.org Wed Jan  5 21:20:40 
+ 2011 ---
Start Impress and load the attached palette and then the file.
The palette contains some axial gradients, so that you can watch the display of
some borders.
The file contains a sreenshot of the rectangles in edit mode.
Go to presentation mode and compare the displayed rectangles with the
screenshot. Notice, that the axial gradients have wrong borders. It seems as if
the border is not added symmetrically as it should be for an axial gradient.

DEV300m76 is OK. I see the bug first in DEV300m77 and unfortunately in OOo33RC8 
too.

-
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 116318] axial gradient has wrong border in presentation mode

2011-01-05 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116318





--- Additional comments from reg...@openoffice.org Wed Jan  5 21:22:57 
+ 2011 ---
Created an attachment (id=75475)
Rectangles with axial gradients to compare edit and presentation mode


-
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 6535] Symbol palette

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=6535


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Status|NEW   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from reg...@openoffice.org Mon Jan  3 13:47:44 
+ 2011 ---
Feature is already there.

-
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 6535] Symbol palette

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=6535


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from reg...@openoffice.org Mon Jan  3 13:48:46 
+ 2011 ---
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 11167] Lack of union/intersection with limits.

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=11167


User regina changed the following:

What|Old value |New value

  CC|'pmike,troodon'   |'pmike,regina,troodon'





--- Additional comments from reg...@openoffice.org Mon Jan  3 14:00:16 
+ 2011 ---
Similar request in issue 7664.

-
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 36535] Impossible to enter non it alic greek characters

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=36535


User regina changed the following:

What|Old value |New value

  CC|'fedorafonts,ih,troodon'  |'fedorafonts,ih,regina,tro
|  |odon'

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from reg...@openoffice.org Mon Jan  3 14:26:21 
+ 2011 ---
In OOo3.3 two Greek symbol sets are available, one for regular characters and
one for italic character.

-
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 14559] Symbols in the formula edi tor

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=14559





--- Additional comments from reg...@openoffice.org Mon Jan  3 14:37:18 
+ 2011 ---
*** Issue 49928 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...@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 49928] Allow direct use of Specia l Characters in Formulas

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=49928


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Status|NEW   |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from reg...@openoffice.org Mon Jan  3 14:37:31 
+ 2011 ---
yes, duplicate.

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

-
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 49928] Allow direct use of Specia l Characters in Formulas

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=49928


User regina changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from reg...@openoffice.org Mon Jan  3 14:38:04 
+ 2011 ---
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 66848] distortion of [] in matrix

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66848





--- Additional comments from reg...@openoffice.org Mon Jan  3 14:49:50 
+ 2011 ---
Seems to be connected to issue 35783.

-
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 93402] Can not write %DELTA%omega as one word without spaces

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93402


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





--- Additional comments from reg...@openoffice.org Mon Jan  3 15:06:44 
+ 2011 ---
This should be solved with the new attribute nospace, see issue 109020. Please
try the new OOo3.3 (currently RC8), which has got this feature.

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

-
To unsubscribe, e-mail: 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 65931] double-clicking formula el ements fails to select %-character and quotati on marks

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=65931





--- Additional comments from reg...@openoffice.org Mon Jan  3 17:14:11 
+ 2011 ---
I see the error in OOo3.2, but no longer in OOo3.3RC8 and DEV300m95.

-
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 65931] double-clicking formula el ements fails to select %-character and quotati on marks

2011-01-03 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=65931


User regina changed the following:

What|Old value |New value

  CC|''|'regina'





-
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 116275] Import xlsx

2011-01-02 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116275


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

  Issue type|DEFECT|ENHANCEMENT

Keywords|  |oooqa





--- Additional comments from reg...@openoffice.org Sun Jan  2 11:51:43 
+ 2011 ---
The document contains a pivot table with 4803 columns x 11 rows.
(4801 data columns, row heading column, grant total column,
9 data rows, column heading row, grant total row).

OOo is not able to handle such pivot tables.
Limits: 8 data variables, 1024 columns per sheet.

I set this issue to new and enhancement because I think, OOo should give a
warning, when column count of documents exceeds the maximal columns count of OOo
and when pivot table contains more than 8 variables.
(I cannot search for duplicates because Issuetracker is nearly unresponsive.)
 

-
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 116224] Printout size

2011-01-02 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116224


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

Keywords|  |needmoreinfo, oooqa





--- Additional comments from reg...@openoffice.org Sun Jan  2 21:40:01 
+ 2011 ---
What version of OOo do you use? (Help  About).

If it is really the outdated OOo1.0.0, then please try an actual version.
Printing has been changed in the meantime. http://download.openoffice.org/

-
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 116283] fit to printable page p rints with wrong origin

2011-01-02 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116283
 Issue #|116283
 Summary|fit to printable page prints with wrong origin
   Component|Drawing
 Version|DEV300m96
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|printing
 Assigned to|graphicsneedsconfirm
 Reported by|regina





--- Additional comments from reg...@openoffice.org Sun Jan  2 23:27:40 
+ 2011 ---
The attached documents contain a outer rectangle in page size and a smaller
inner rectangle.
Print the attached documents with the setting fit to printable page.
On my HP Color LaserJet 2605 the outer rectangle is not full visible because
parts of it are in the unprintable margin of my printer.

The scaling itself is correct. You can control this with the inner rectangle.
But the whole printing has a wrong offset.

I have tested this:
In sd/source/ui/view/DocumentRenderer.cxx after line 2273
I have added

if (bScalePage)
{
 long aPatchedPageOffsetX = aPageOffset.X()/(double)aMap.GetScaleX();
 long aPatchedPageOffsetY = aPageOffset.Y()/(double)aMap.GetScaleY();
 aMap.SetOrigin(Point(aPatchedPageOffsetX,aPatchedPageOffsetY));
}

With this settings 'fit to printable page' works for Draw documents. I have
expected, that a simple shift would be enough, but the non printable margin is
scaled somewhere when printed. In addition there are a lot of places with #if
0 disabled origin settings. So I doubt, that this is the correct place at all.

I'm not familiar with printing and have no idea whether my changes would break
something. Nevertheless, I hope my findings are useful for you.

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

-
To unsubscribe, e-mail: 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 116283] fit to printable page p rints with wrong origin

2011-01-02 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116283





--- Additional comments from reg...@openoffice.org Sun Jan  2 23:29:25 
+ 2011 ---
Created an attachment (id=75462)
DIN A6 document with two rectangles


-
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 116283] fit to printable page p rints with wrong origin

2011-01-02 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116283





--- Additional comments from reg...@openoffice.org Sun Jan  2 23:28:43 
+ 2011 ---
Created an attachment (id=75461)
DIN A2 document with two rectangles


-
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



[www-issues] [Issue 116273] about compatability

2011-01-01 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116273


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

  Status|UNCONFIRMED   |RESOLVED

Priority|P1|P3

  Resolution|  |WORKSFORME





--- Additional comments from reg...@openoffice.org Sat Jan  1 13:10:09 
+ 2011 ---
You should be able to use the current version of OOo on Windows 7 without 
problems.
Feel free to reopen the issue, if it does not work for you. In that case
describe exactly what goes wrong for you.

If you have an issue with a certain webpage, then site the URL and describe the
error exactly.

-
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



  1   2   3   4   5   6   7   8   9   10   >