[sw-issues] [Issue 116183] Hyperlink dialog can not be closed.

2010-12-20 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116183





--- Additional comments from liujia...@openoffice.org Mon Dec 20 09:17:45 
+ 2010 ---
Liujianli-OS: Hi OS.
I am working on it. I found that open Hyperlink dialog, then select the
shape(i.e.step 3), the SID_HYPERLINK_DIALOG was disabled. It seems that the ID
have not been dispatched successfully.
I do not know how to deal with it.
Can you give some suggestions?

-
Please do not reply to this automatically generated notification from
Issue 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 116183] Hyperlink dialog can not be closed.

2010-12-19 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116183
 Issue #|116183
 Summary|Hyperlink dialog can not be closed.
   Component|Word processor
 Version|OOo 3.2
Platform|PC
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|writerneedsconfirm
 Reported by|liujianli





--- Additional comments from liujia...@openoffice.org Mon Dec 20 06:39:05 
+ 2010 ---
1. Start a writer document.
2. Insert a shape(Rectangle, ellipse or others) and deselect it.
3. Open the Hyperlink dialog and then select the shape.
4. Click the close button of Hyperlink dialog.

The Hyperlink dialog can not be closed.

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

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


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



[graphics-issues] [Issue 113977] After check keep ratio checkbox, the width of Numbering was changed a s same as height

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





--- Additional comments from liujia...@openoffice.org Fri Aug 27 07:23:27 
+ 2010 ---
Created an attachment (id=71421)
the patch of 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...@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 114005] Last paragraph can not ap ply bullet or numbering when selecting backwa rds

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





--- Additional comments from liujia...@openoffice.org Mon Aug 23 07:40:41 
+ 2010 ---
Liujianli-OD:
Hi OD,
I am interested in this issue and I have been working on it.
I found the aPam was miscalculated in the SwEditShell::SetCurNumRule method in
the (sw\source\core\edit)ednumber.cxx

Before second time call SwDoc::SetNumRule method in the For cycle, the aPam 's
both member m_pMark and m_pPoint were same。 so I am focus on the
SwPamRanges::SetPam method, but it just to get PamRange( rTmp's member nStart
and nEnd were same, but the selection was last two paragaraph, this is the point
) and assign the value to the Pam's m_pMark and m_pPoint.

I think the issue happen when was doing SwPamRanges constructor. Obviously the
main point was SwPamRanges::Insert method. First two times aRg was not made any
change but inserted into the _SwPamRanges, but the third time aRg.nStart 
aRg.nEnd so that the two variables was exchanged and then the following code
will be executed and made aRg.nEnd changed, but I don't konw why aRg.nEnd and
aRg.nStart will be exchanged when aRg.nStart  aRg.nEnd.

Wound you like give me some suggestion to fix this issue?

code:

if( Count()  Seek_Entry( aRg, nPos ))  // suche Insert Position
{
// ist der im Array stehende kleiner ??
if( ( pTmp = GetData()+ nPos )-nEnd  aRg.nEnd )
{
aRg.nEnd = pTmp-nEnd;
Remove( nPos, 1 );  // zusammenfassen
}
else
return;  // ende, weil schon alle zusammengefasst waren
}


-
Please do not reply to this automatically generated notification from
Issue 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 114005] Last paragraph can not ap ply bullet or numbering when selecting backwa rds

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





--- Additional comments from liujia...@openoffice.org Mon Aug 23 08:01:55 
+ 2010 ---
liujianli-od:Ok, thank you.
Have a good OOoCon2010.


-
Please do not reply to this automatically generated notification from
Issue 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 114005] Last paragraph can not ap ply bullet or numbering

2010-08-20 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114005
 Issue #|114005
 Summary|Last paragraph can not apply bullet or numbering
   Component|Word processor
 Version|OOo 3.2
Platform|PC
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|formatting
 Assigned to|writerneedsconfirm
 Reported by|liujianli





--- Additional comments from liujia...@openoffice.org Fri Aug 20 06:53:37 
+ 2010 ---
1. Start one writer, type four paragraphs.
2. Select the first paragraph, push Ctrl and then select last two paragraphs
from down to up.
3. Open Bullets and Numbering dialog, select any bullet in Bullets tab and
then click OK button.

The last paragraph does not apply bullet.

-
Please do not reply to this automatically generated notification from
Issue 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 113977] After check keep ratio checkbox, the width of Numbering was changed a s same as height

2010-08-19 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113977
 Issue #|113977
 Summary|After check keep ratio checkbox, the width of Number
|ing was changed as same as height
   Component|Presentation
 Version|OOo 3.2
Platform|PC
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|graphicsneedsconfirm
 Reported by|liujianli





--- Additional comments from liujia...@openoffice.org Thu Aug 19 08:12:05 
+ 2010 ---
1. Start one presentation, choose the Title, Text layout and type some
character in the Text text frame.
2. Open Bullets and Numbering dialog and then switch to Customize tab.
3. Select Graphics in the Numbering listbox, and then click Select...
button and select like bluarrow.gif from Gallery option. and click Ok 
button.
4. Open Bullets and Numbering dialog again and check the Keep ratio checkbox
in the Customize tab.

The width of Numbering was changed as same as height.

-
Please do not reply to this automatically generated notification from
Issue 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 75339] Part of the image is flipp ed horizontally when viewed in slideshow.

2009-04-20 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75339


User liujianli changed the following:

What|Old value |New value

  CC|'kpalagin'|'kpalagin,liujianli'





-
Please do not reply to this automatically generated notification from
Issue 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 96199] Slide show is ineffective when the document include some big images,such as 3M or more, in a page

2008-11-16 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96199





--- Additional comments from [EMAIL PROTECTED] Mon Nov 17 02:24:30 + 
2008 ---
I am sorry,I mean the speed of slide show is slow.
This issue is about the mini portable internet device,of course the 
operational capability of this hardware is not excellent as notebook computer.
My colleague think his code is also useful for OOo.
Now he is exchanging the opinion with Thorsten Behrens in the mailing list and 
hope to contribute the code to OOo.

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

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


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



[graphics-issues] [Issue 96199] Slide show is ineffective when the document include some big images,such as 3M or more, in a page

2008-11-13 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96199
 Issue #|96199
 Summary|Slide show is ineffective when the document include so
|me big images,such as 3M or more, in a page
   Component|Presentation
 Version|DEV300m32
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|viewing
 Assigned to|graphicsneedsconfirm
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Fri Nov 14 03:14:37 + 
2008 ---
- Start an Impress
- Insert several big images from file in a page
- Start the presentation
- The efficiency of Slide show is slowly.

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

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


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



[graphics-issues] [Issue 96199] Slide show is ineffective when the document include some big images,such as 3M or more, in a page

2008-11-13 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96199


User liujianli changed the following:

What|Old value |New value

  CC|''|'chengxz'





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

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


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



[graphics-issues] [Issue 90970] Crashed when Insert a file object that save with password

2008-08-06 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90970


User liujianli changed the following:

What|Old value |New value

  CC|''|'chengxz,liutao,peter'





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

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


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



[graphics-issues] [Issue 90970] Crashed when Insert a file object that save with password

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





--- Additional comments from [EMAIL PROTECTED] Tue Aug  5 06:12:58 + 
2008 ---
The patch of i90612 can not fix this issue,please check it again.

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

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


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



[graphics-issues] [Issue 92301] The presentation crashed w hen setup effect options of custom animation

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





--- Additional comments from [EMAIL PROTECTED] Tue Aug  5 02:21:55 + 
2008 ---
I am sorry,here is the detailed description.

1. Start a presentation.
2. Input some words and select all the words,Click Custom Animation in the 
task pane.
3. Click Add... button to open the Custom Animation dialog.Normally,the 
current tabpage is Entrance,please assign one effect for the select 
words,Click OK button.
4. Click ... button that is in the right side of Direction,the Effect 
Options dialog is opened.Select Timing tabpage then select start effect on 
click of radio button and select one item in the list box below(there is only 
one item).
5. Switch to Text Animation,select All paragraphs at once in the Group 
Text list box and select the check box In reverse order,Click OK.
5. Right click the item which is under Speed list box to open Effect 
Options dialog again,switch to Timing tabpage and then select Animation as 
part of click sequence.
6. Repeat the step 5.
The presentation crashed.

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

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


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



[graphics-issues] [Issue 92301] The presentation crashed w hen setup effect options of custom animation

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





--- Additional comments from [EMAIL PROTECTED] Tue Aug  5 02:57:29 + 
2008 ---
I made a mistake in the serial number,please repeat the step:
Switch to Text Animation,select All paragraphs at once in the Group 
Text list box and select the check box In reverse order,Click 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[graphics-issues] [Issue 92425] Insert the file and close it,the presentation crashed.

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


User liujianli changed the following:

What|Old value |New value

 Version|OOo 2.4.1 |OOo 2.4.0





--- Additional comments from [EMAIL PROTECTED] Tue Aug  5 03:11:06 + 
2008 ---
I am sorry,here is the detailed description.

1. Start a presentation.
2. Insert-File,the Insert File dialog is opened.Select the attached 
document and Click Insert  button to open Insert Slides/Objects 
dialog,select Link checkbox and then Click OK.Click Yes button if the 
info box will pop-up.
3. Create a empty presentation document again and switch to the document 
before,close it,if pop-up the info box,push the discard button.
4. Close the empty document which is created in step 3.

The procedure crashed!
Remark:
This is very interesting,after install OOo2.4.1,we can reproduce it according 
the description for the first time.The second test we can not reproduce it.

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

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


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



[graphics-issues] [Issue 92421] The PPT document that save with password,OOo can't open or stop respondi ng

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92421
 Issue #|92421
 Summary|The PPT document that save with password,OOo can't ope
|n or stop responding
   Component|Presentation
 Version|OOo 2.4.1
Platform|All
 URL|
  OS/Version|Windows XP
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Mon Aug  4 02:38:31 + 
2008 ---
1. Start a presentation.
2. Please loading the attachment.

OOo can't open the document1 and document2  of the attachment.
When open the document3,the presentation stop responding.

Document1:File encryption setting for the document to open.
Document2:File encryption setting for the document to modify.
Document3:Established above two jurisdictions.

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

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


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



[graphics-issues] [Issue 92421] The PPT document that save with password,OOo can't open or stop respondi ng

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92421





--- Additional comments from [EMAIL PROTECTED] Mon Aug  4 02:42:07 + 
2008 ---
Created an attachment (id=55522)
file encryption setting for the document to open.


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

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


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



[graphics-issues] [Issue 92421] The PPT document that save with password,OOo can't open or stop respondi ng

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92421





--- Additional comments from [EMAIL PROTECTED] Mon Aug  4 02:42:44 + 
2008 ---
Created an attachment (id=55523)
file encryption setting for the document to modify.


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

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


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



[graphics-issues] [Issue 92421] The PPT document that save with password,OOo can't open or stop respondi ng

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92421





--- Additional comments from [EMAIL PROTECTED] Mon Aug  4 02:53:54 + 
2008 ---
Created an attachment (id=55525)
establined two jurisdiction


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

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


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



[graphics-issues] [Issue 92421] The PPT document that save with password,OOo can't open or stop respondi ng

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92421


User liujianli changed the following:

What|Old value |New value

  CC|''|'chengxz,liutao,peter'





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

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


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



[graphics-issues] [Issue 92425] Insert the file and close it,the presentation crashed.

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92425
 Issue #|92425
 Summary|Insert the file and close it,the presentation crashed.
   Component|Presentation
 Version|OOo 2.4.1
Platform|All
 URL|
  OS/Version|Windows XP
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Mon Aug  4 03:16:27 + 
2008 ---
1. Start a presentation.
2. Insert the attachment document,please remember to select Link checkbox.If 
pop-up a info box,Click Yes button.
3. Create a empty presentation document again and switch to the document 
before,close it,if pop-up the info box,push the discard button.
4. Close the empty document which is created in step 3.

The procedure crashed!

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

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


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



[graphics-issues] [Issue 92425] Insert the file and close it,the presentation crashed.

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92425





--- Additional comments from [EMAIL PROTECTED] Mon Aug  4 03:20:34 + 
2008 ---
Created an attachment (id=55526)
example 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[graphics-issues] [Issue 92421] The PPT document that save with password,OOo can't open or stop respondi ng

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92421


User liujianli changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |84291
  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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[tools-issues] [Issue 84291] Meta issue for Reflag 2000 contributions that are not in the main code b ase of OOo

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84291


User liujianli changed the following:

What|Old value |New value

 IssuesThisDependsOn|91416,91483,91786,91787,92|91416,91483,91786,91787,92
|300,92301,92303,92304,9230|300,92301,92303,92304,9230
|6,92307,92308,92309,92310,|6,92307,92308,92309,92310,
|92313,92316,92320,92326,92|92313,92316,92320,92326,92
|327,92356,92360,92361,9236|327,92356,92360,92361,9236
|2,92420,92422,92423   |2,92420,92421,92422,92423





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

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


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



[graphics-issues] [Issue 92425] Insert the file and close it,the presentation crashed.

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92425


User liujianli changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |84291
  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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[tools-issues] [Issue 84291] Meta issue for Reflag 2000 contributions that are not in the main code b ase of OOo

2008-08-03 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84291


User liujianli changed the following:

What|Old value |New value

 IssuesThisDependsOn|91416,91483,91786,91787,92|91416,91483,91786,91787,92
|300,92301,92303,92304,9230|300,92301,92303,92304,9230
|6,92307,92308,92309,92310,|6,92307,92308,92309,92310,
|92313,92316,92320,92326,92|92313,92316,92320,92326,92
|327,92356,92360,92361,9236|327,92356,92360,92361,9236
|2,92420,92421,92422,92423 |2,92420,92421,92422,92423,
|  |92425





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

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


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



[graphics-issues] [Issue 92300] Insert an OLE Object which is link to currently document.,the procedure stops responding

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92300


User liujianli changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |84291
  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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[tools-issues] [Issue 84291] Meta issue for Reflag 2000 contributions that are not in the main code b ase of OOo

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84291


User liujianli changed the following:

What|Old value |New value

 IssuesThisDependsOn|91483,91786,91787,92304,92|91483,91786,91787,92300,92
|306   |304,92306





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

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


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



[graphics-issues] [Issue 92301] The presentation crashed w hen setup effect options of custom animation

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92301


User liujianli changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |84291
  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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[graphics-issues] [Issue 92303] Preview part of effect of slide transition,the presentaton crashed.

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92303


User liujianli changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |84291
  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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[tools-issues] [Issue 84291] Meta issue for Reflag 2000 contributions that are not in the main code b ase of OOo

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84291


User liujianli changed the following:

What|Old value |New value

 IssuesThisDependsOn|91416,91483,91786,91787,92|91416,91483,91786,91787,92
|300,92301,92304,92306,9230|300,92301,92303,92304,9230
|7,92308,92313,92356   |6,92307,92308,92313,92356





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

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


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



[graphics-issues] [Issue 92300] Insert an OLE Object which is link to currently document.,the procedure stops responding

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92300


User liujianli changed the following:

What|Old value |New value

  CC|''|'chengxz,liutao,peter'





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

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


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



[graphics-issues] [Issue 92301] The presentation crashed w hen setup effect options of custom animation

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92301


User liujianli changed the following:

What|Old value |New value

  CC|''|'chengxz,liutao,peter'





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

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


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



[graphics-issues] [Issue 92303] Preview part of effect of slide transition,the presentaton crashed.

2008-07-31 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92303


User liujianli changed the following:

What|Old value |New value

  CC|''|'chengxz,liutao,peter'





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

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


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



[graphics-issues] [Issue 92300] Insert an OLE Object which is link to currently document.,the procedure stops responding

2008-07-30 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92300
 Issue #|92300
 Summary|Insert an OLE Object which is link to currently docume
|nt.,the procedure stops responding
   Component|Presentation
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Thu Jul 31 02:12:51 + 
2008 ---
1. Start a presentation.
2. Do something,for example,you can input some words and then save the 
document.
3. Insert-Object-OLE Object...,please select create from file and 
click Search button to select the document that you have saved.
4. Please select Link to file and click OK.
5. File-Save,close this document,and open it again.
The procedure stops responding,it seems to be a endless loop.

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

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


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



[graphics-issues] [Issue 92301] The presentation crashed w hen setup effect options of custom animation

2008-07-30 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92301
 Issue #|92301
 Summary|The presentation crashed when setup effect options of 
|custom animation
   Component|Presentation
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Thu Jul 31 02:40:44 + 
2008 ---
1. Start a presentation.
2. Input some words and setup custom animation.
3. Open the Effect Options dialog,first select Timing tabpage,second pitch 
on start effect on click of and select one item in the list box below.
4. Switch to Text Animation,select All paragraphs at once in the Group 
Text list box and select the check box In reverse order,Click OK.
5. Open the Effect Options dialog again,switch to Timing tabpage and then 
select Animation as part of click sequence.
6. Repeat the step 4.
The presentation crashed.

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

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


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



[graphics-issues] [Issue 92303] Preview part of effect of slide transition,the presentaton crashed.

2008-07-30 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92303
 Issue #|92303
 Summary|Preview part of effect of slide transition,the present
|aton crashed.
   Component|Presentation
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|Linux
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Thu Jul 31 03:05:12 + 
2008 ---
1. Start a presentation.
2. Click Slide Transition in the Task pane.
3. Select anyone between Uncover down and Uncover Right-up,When the preview 
has not been finished, click the center pane(Try several times more).
The presentation crashed.

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

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


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



[graphics-issues] [Issue 91462] The crash about Animated i mage

2008-07-08 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91462
 Issue #|91462
 Summary|The crash about Animated image
   Component|Presentation
 Version|OOo 2.4.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Tue Jul  8 06:45:59 + 
2008 ---
1. Start a presentation.
2. Draw a rectangle or other shapes.
3. Select the shape and then Insert-Animated Image...
4. Select Bitmap object,push Apply object image button and then 
push backwards button,finally,adjust duration time.

The presentation crashed.

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

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


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



[graphics-issues] [Issue 91462] The crash about Animated i mage

2008-07-08 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91462





--- Additional comments from [EMAIL PROTECTED] Tue Jul  8 07:27:16 + 
2008 ---
I have debug it and got the reason.After pushed backwards button I broke at 
IMPL_LINK( AnimationWindow, ClickPlayHdl, void *, p ),the method UpdateControl 
outside while loop is given -2 as its real parameter but the parameter is 
defined as ULONG.Therefore,I assumed it led to the problem indirectly.

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

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


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



[graphics-issues] [Issue 90969] Crashed when insert a slid e under outline view

2008-06-23 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90969





--- Additional comments from [EMAIL PROTECTED] Mon Jun 23 08:19:49 + 
2008 ---
Yes,you are right.That will make it crash 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[graphics-issues] [Issue 90969] Crashed when insert a slid e under outline view

2008-06-22 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90969
 Issue #|90969
 Summary|Crashed when insert a slide under outline view
   Component|Presentation
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Mon Jun 23 01:58:01 + 
2008 ---
1. Start a presentation.
2. Switch to Outline view,type Enter to create a slide.
3. Push the Undo button and then insert a new slide.

The presentation crashed.

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

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


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



[graphics-issues] [Issue 90970] Crashed when Insert a file object that save with password

2008-06-22 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90970
 Issue #|90970
 Summary|Crashed when Insert a file object that save with passw
|ord
   Component|Presentation
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Mon Jun 23 02:24:53 + 
2008 ---
1. Start a presentation.
2. Inert- Object- OLE object,choose Create from file and select Link to 
file and then click the Search button to open a file that save with password.
3. Click cancel button in the password dialog and then the dialog Microsoft 
visual C++ Runtime library pops up,after clicking on OK button the office 
program has to be closed.

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

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


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



[graphics-issues] [Issue 90909] Insert PLUG-IN object and switch to Notes then crash

2008-06-20 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90909
 Issue #|90909
 Summary|Insert PLUG-IN object and switch to Notes then crash
   Component|Presentation
 Version|OOo 2.4.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|wg
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Fri Jun 20 07:03:35 + 
2008 ---
1. Start an impress.
2. Insert a PLUG-IN object.
3. Switch to Outline,Slide Sorter or Handout.
4. Then switch to Notes.

The impress will crash.

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

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


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



[www-issues] [Issue 89675] CVS access

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


User liujianli changed the following:

What|Old value |New value

  CC|'cl,mh,st'|'cl,liujianli,mh,st'





--- Additional comments from [EMAIL PROTECTED] Mon May 26 01:59:16 + 
2008 ---
OK,got it,I will continue try my best.

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

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


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



[www-issues] [Issue 89671] CVS access

2008-05-20 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89671
 Issue #|89671
 Summary|CVS access
   Component|www
 Version|current
Platform|All
 URL|
  OS/Version|Windows, all
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|openoffice.org website general issues
 Assigned to|[EMAIL PROTECTED]
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Tue May 20 07:49:20 + 
2008 ---
Hello,I'm Liu Jianli working at Beijing Redflag CH2000 Software Co., Ltd. I'm 
a member of graphics team. To be able to submit changes I need a CVS access. 
Thanks a lot.

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

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


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



[www-issues] [Issue 89675] CVS access

2008-05-20 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89675
 Issue #|89675
 Summary|CVS access
   Component|www
 Version|current
Platform|All
 URL|
  OS/Version|Windows, all
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|openoffice.org website general issues
 Assigned to|[EMAIL PROTECTED]
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Tue May 20 08:02:29 + 
2008 ---
Hello,I'm Liu Jianli working at Beijing Redflag CH2000 Software Co., Ltd. I'm 
a member of graphics team. To be able to submit changes I need a CVS access. 
Thanks a lot.

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

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


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



[www-issues] [Issue 89675] CVS access

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





--- Additional comments from [EMAIL PROTECTED] Tue May 20 08:04:57 + 
2008 ---
Created an attachment (id=53788)
It's the public key


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

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


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



[graphics-issues] [Issue 66425] Text crossed out with / or X is not crossed out in running presentation.

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





--- Additional comments from [EMAIL PROTECTED] Wed Apr 16 01:19:59 + 
2008 ---
Should be thanks for Herbert,he give me a lot of help.

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

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


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



[graphics-issues] [Issue 87271] Enhance the Format Paintbr ush function of presentation

2008-03-19 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87271
 Issue #|87271
 Summary|Enhance the Format Paintbrush function of presentation
   Component|Presentation
 Version|OOo 2.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|FEATURE
Priority|P3
Subcomponent|code
 Assigned to|cgu
 Reported by|liujianli





--- Additional comments from [EMAIL PROTECTED] Thu Mar 20 02:53:25 + 
2008 ---
In the current version of OOo,the Format paintbrush of presentation is not 
support the application of Character Format,Paragraph Format and Bullets and 
Numbering style.
So we are going to make it better according the specification of Writer and 
Presentation.

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

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


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



[graphics-issues] [Issue 87271] Enhance the Format Paintbr ush function of presentation

2008-03-19 Thread liujianli
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87271


User liujianli changed the following:

What|Old value |New value

  CC|'cl'  |'cl,liutao,peter,xzcheng'





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

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


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



[graphics-issues] [Issue 55708] Strike-thru using / and X disappears in slide show

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


User liujianli changed the following:

What|Old value |New value

  CC|''|'liujianli'





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 05:47:31 + 
2008 ---
*** Issue 66425 has been marked as a duplicate of this issue. ***
I have already fixed it,please confirm it.

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

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


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



[graphics-issues] [Issue 58591] Underlined text at end of line doesn't appear with custom animation

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





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 05:44:26 + 
2008 ---
*** Issue 82103 has been marked as a duplicate of this issue. ***
I have already fixed it,please check it!

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

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


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



[graphics-issues] [Issue 58591] Underlined text at end of line doesn't appear with custom animation

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


User liujianli changed the following:

What|Old value |New value

  CC|''|'liujianli'





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

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


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