[Libreoffice-bugs] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 42762, which changed state.

Bug 42762 Summary: FILEOPEN particular document with Math Formula object will 
CRASH
https://bugs.freedesktop.org/show_bug.cgi?id=42762

   What|Old Value   |New Value

 Resolution||WORKSFORME
 Status|UNCONFIRMED |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 34244] EDITING: Make Hyperlinks available in Table indexes

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34244

Cédric Bosdonnat cedric.bosdonnat@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #7 from Cédric Bosdonnat cedric.bosdonnat@free.fr 2011-11-30 
01:26:50 UTC ---
This commit added hyperlinks by default on the whole entry of the TOC. This
could fit this request...

http://cgit.freedesktop.org/libreoffice/core/commit/?id=2cc144286d81236e8677a551a458172ca9546c29

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43314] RTF document with tables loads fine in LibreOffice 3.3.x but it's broken in LibreOffice 3.4.x

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43314

Jesus Corrius je...@softcatala.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Jesus Corrius je...@softcatala.org 2011-11-30 02:01:22 
PST ---
The document works fine in master.

The problem will be fixed in LibreOffice 3.5.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43368] New: Windows Live Mail 2011 not detected as email client for Send as e-mail attachment

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43368

 Bug #: 43368
   Summary: Windows Live Mail 2011 not detected as email client
for Send as e-mail attachment
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: k...@mdstech.co.za


A client was complaining that her LibreOffice wouldn't let her send her
documents as email attachments from the file menu. After some investigation it
was found that this feature works fine with clients such as Mozilla Thunderbird
and Windows Live Mail 2010. However when using Windows Live 2011, it would
return the error No valid email clients configured.

We have tried setting default program access in the control panel. We have also
tried setting it manually in LibreOffice, but no such a setting was available.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] New: Better specific UI for connecting to PostgreSQL

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

 Bug #: 43369
   Summary: Better specific UI for connecting to PostgreSQL
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: lio...@mamane.lu


Created attachment 53965
  -- https://bugs.freedesktop.org/attachment.cgi?id=53965
screenshot of MySQL-specific UI

When connecting to a PostgreSQL database (through PostgreSQL-SDBC driver), we
currently just ask the user to type a conninfo string. That's familiar to
PostgreSQL experts, but other people would benefit from some hand-holding.

Implement a PostgreSQL-specific UI to get the connection info, along the lines
of the MySQL-specific UI we already have.


The file you need to change in LibreOffice is
dbaccess/source/ui/dlg/ConnectionHelper.cxx, in function

   IMPL_LINK(OConnectionHelper, OnBrowseConnections, PushButton*, /*_pButton*/)

there is a big

switch ( eType )

We need to add a case for PostgreSQL. You can take inspiration from the MySQL
case.

You may also need to adapt
ODbDataSourceAdministrationHelper::getConnectionURL() in file DbAdminImpl.cxx,
as well as ODbTypeWizDialog::determineNextState in file dbwiz to activate a new
state ADDITIONAL_PAGE_PGSQL, which you have to create first.

Finally, the dialog itself would be in file
dbaccess/source/ui/dlg/dbadminsetup.src, in a to-be-created section TabPage
PAGE_DBWIZARD_PGSQL.

You could just generate a conninfo string from that, but I'd prefer if you set
it as properties of the datasouce/database/..., so that the driver gets it
through the same interface as the username and password; cf handling of these
for inspiration. There is already support for that in the driver, see
connectivity/source/drivers/postgresql/pq_connection.cxx, function
properties2arrays. POssibly you need to extend the handling there to support
more keywords.


Please *also* allow advanced users to enter a conninfo string, and mixing of
entering a conninfo string (like now) and information through widgets in the
specific UI. See
http://developer.postgresql.org/pgdocs/postgres/libpq-connect.html#LIBPQ-PQCONNECTDBPARAMS
for an up-to-date list of all recognised connection settings. Make a decision
on which of these settings make or do not make sense to give a friendly UI for.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Better specific UI for connecting to PostgreSQL

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

  Status Whiteboard||EasyHack SkillCpp SkillVcl
   ||TopicUI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

Summary|Better specific UI for  |Specific UI for collecting
   |connecting to PostgreSQL|PostgreSQL connection
   ||settings

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39852] moz module fails to build in build environment, builds fine in empty environment

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39852

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from Lionel Elie Mamane lio...@mamane.lu 2011-11-30 03:18:30 
UTC ---
I fixed this in commit 34a3046698890676d492d46dfb628d51eb823395 on Wed Sep 7
11:11:18 2011 +0200

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37361] LibreOffice 3.5 most annoying bugs

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Bug 37361 depends on bug 42914, which changed state.

Bug 42914 Summary: Terminal (command) window is opened when launching any 
executable
https://bugs.freedesktop.org/show_bug.cgi?id=42914

   What|Old Value   |New Value

 Resolution||FIXED
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43371] New: Inserting an image file moves the visible cursor to the end of the text

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43371

 Bug #: 43371
   Summary: Inserting an image file moves the visible cursor to
the end of the text
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: a...@telfort.nl


Inserting an image in a writer document moves the screen to the end of the text
in the document.
Press the up key brings the screen back above the image on the correct page.

Sometimes the screen jumps to the beginning. I do not know when.

Moreover, the image file is inserted two logical positions (paragraphs) above
the cursor. 

ubuntu 11.10 64 bits 3.4.4

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43188] small program that inject dll in LibreOffice Quickstarter in order to improve component start time.

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43188

Maxime de Roucy maxime.dero...@linagora.com changed:

   What|Removed |Added

  Attachment #53845|0   |1
is obsolete||

--- Comment #4 from Maxime de Roucy maxime.dero...@linagora.com 2011-11-30 
04:55:16 PST ---
Created attachment 53966
  -- https://bugs.freedesktop.org/attachment.cgi?id=53966
the exe with dll_loader_*.txt and licence file

I changed the zip file attached containing the exe cause I didn't know that
programs built with visual studio needs the msvcp100.dll to work.

I built the new exe with static libs so the user doesn't need to have the dll
installed anymore.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43188] small program that inject dll in LibreOffice Quickstarter in order to improve component start time.

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43188

--- Comment #5 from Maxime de Roucy maxime.dero...@linagora.com 2011-11-30 
05:11:32 PST ---
For your information this program was developed on a request to Linagora from
the Communauté Urbaine de Bordeaux (CUB).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

Terrence Enger lo_b...@iseries-guru.com changed:

   What|Removed |Added

 CC||lo_b...@iseries-guru.com

--- Comment #1 from Terrence Enger lo_b...@iseries-guru.com 2011-11-30 
05:16:04 PST ---
I also renamed Date::IsValid() to Date::IsValidAndGregorian() to clarify
and added Date::IsValidDate() that does not check for the Gregorian

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

--- Comment #2 from Lionel Elie Mamane lio...@mamane.lu 2011-11-30 05:28:47 
PST ---
(In reply to comment #1)
 I also renamed Date::IsValid() to Date::IsValidAndGregorian() to clarify
 and added Date::IsValidDate() that does not check for the Gregorian

I think that was in the wrong bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43373] New: VIEWING the TOC (Table of Contents) will crash the Writer

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43373

 Bug #: 43373
   Summary: VIEWING the TOC (Table of Contents) will crash the
Writer
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: ido...@yahoo.de


Created attachment 53967
  -- https://bugs.freedesktop.org/attachment.cgi?id=53967
Displaying the TOC will crash Writer.

LibreOffice 3.4.4 
OOO340m1 (Build:402)

A)--
1) Open the attached file. 
2) On the first page there is a TOC. 
3) Scroll down to check the TOC.
Writer will crash.

B)--
1) Open the attached file.
2) Remove the TOC as you slowly scrolling down until the TOC header is visible.
3) Right click on TOC header and choose Delete Index/table.
4) Try to insert a new TOC.
Writer will crash.

C)--
1) Open the attached file.
2) Try to insert any Index/table.
Writer will crash.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42910] [Calc] xls export corrupts some formulas with named ranges

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42910

markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 CC||markus.mohrhard@googlemail.
   ||com
   See Also|https://bugs.freedesktop.or |
   |g/show_bug.cgi?id=38204 |

--- Comment #3 from markus.mohrh...@googlemail.com 2011-11-30 06:19:19 PST ---
the linked bug report had a totally different reason and is fixed for a long
time

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43363] Tooltipps for Toolbar icons missing

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43363

--- Comment #2 from Andrew android2...@gmail.com 2011-11-30 06:30:49 UTC ---
Created attachment 53968
  -- https://bugs.freedesktop.org/attachment.cgi?id=53968
view in Window$ compared to Ubuntu

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43363] Tooltipps for Toolbar icons missing

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43363

--- Comment #3 from Andrew android2...@gmail.com 2011-11-30 06:33:11 PST ---
so you will see that in the window version it does not show the tools name. I
have to use the Whats this tool in Help.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43376] New: disabled subsequenttests due to usage of binfilter formats

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43376

 Bug #: 43376
   Summary: disabled subsequenttests due to usage of binfilter
formats
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: markus.mohrh...@googlemail.com


the following sc subsequenttests use sdc, a binfilter format which will fail in
builds without binfilter

sc.ScDDELinkObj
sc.ScDDELinksObj

port them to c++ with ods or fods

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43376] disabled subsequenttests due to usage of binfilter formats

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43376

markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 AssignedTo|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com
 Ever Confirmed|0   |1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43363] Tooltipps for Toolbar icons missing

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43363

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 07:18:58 PST ---
@Andrew:
I know how not Tooltip looks. 1 answer for 10 questions is too rare. Let's
continue with 
 –- Libo settings that might be related to your problems 
('Tools - Options - LibO - Gerneral - Tips', ...'?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43363] Tooltipps for Toolbar icons missing

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43363

--- Comment #5 from Andrew android2...@gmail.com 2011-11-30 07:32:11 PST ---
Libo settings that might be related to your problems 
('Tools - Options - LibO - Gerneral - Tips', ...'

it was the setting. why is this turned off by default. this should be turned
on.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42910] [Calc] xls export corrupts some formulas with named ranges

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42910

--- Comment #4 from markus.mohrh...@googlemail.com 2011-11-30 07:40:29 PST ---
and just to amke it clear, I think it is an import bug but had not yet time to
look into it

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43363] Tooltipps for Toolbar icons missing

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43363

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||NOTABUG

--- Comment #6 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 07:56:24 UTC ---
I deleted User Profile of LibreOffice 3.4.4  - WIN7 Home Premium (64bit)
German UI [OOO340m1 (Build:402)] and saw Tooltips checked and working. So I
believe some particular circumstances caused Andrew's problems, I'm afraid it
will be more or less impossible to reproduce the problem.

@Andrew:
Please feel free to reopen this bug if you find out that the problem still
exists with the current stable LibreOffice version and if you find a way to
prove (reproducible) that update destroys that setting or that a fresh new
first installations starts with tooltips unchecked; indeed default should be
show tooltips.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43060] DRAW EXPORT results in HUGE SVG Picture Size

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43060

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||NOTABUG

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 08:05:07 PST ---
Due to missing complete problem description.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43378] New: LibreOffice main window opens when service started via VBS; breaks VBS scripts

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43378

 Bug #: 43378
   Summary: LibreOffice main window opens when service started via
VBS; breaks VBS scripts
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: e...@columbia.edu


Created attachment 53970
  -- https://bugs.freedesktop.org/attachment.cgi?id=53970
VBS Script that opens LibreOffice main window, but shouldn't

At some point in the past year or so, scripts that used VBS or Delphi (and
presumably other languages) under Windows to run LibreOffice as a service began
to see this problem: when the service manager starts, the new LibreOffice main
window opens. The scripts no longer run silently. This problem is described
in detail here:

http://user.services.openoffice.org/en/forum/viewtopic.php?f=45t=43872p=211375#p211375

A user in that thread provided a script that was designed to the problem, but
it doesn't. The main LibreOffice window opens. He asked that a bug be reported,
with a copy of his script. Here it is (and the same script is an attachment):

---
Set OpenOffice = CreateObject(com.sun.star.ServiceManager)
MsgBox Service Manager is opened
Set StarDesktop = OpenOffice.createInstance(com.sun.star.frame.Desktop)
StarDesktop.terminate
OpenOffice = Null
StarDesktop = Null
MsgBox Service Manager is closed


-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43061] INSERT DRAW generated SVG Does Not have WRITER Page Dimensions

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43061

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||NOTABUG

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 08:11:23 PST ---
It can't be expected that all pictures in the world all have reporter's page
height to width ratio - reporter's desire that an arbitrary picture created in
an arbitrary sized DRAW page should alway fill complete page of an arbitrary
selected page size is not realistic. 

Here is no bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43378] LibreOffice main window opens when service started via VBS; breaks VBS scripts

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43378

e...@columbia.edu changed:

   What|Removed |Added

 OS/Version|All |Windows (All)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43380] New: FILEOPEN: RTF doesn't open properly; just shows a blank page

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43380

 Bug #: 43380
   Summary: FILEOPEN: RTF doesn't open properly; just shows a
blank page
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: cbullock.pub...@gmail.com


Created attachment 53972
  -- https://bugs.freedesktop.org/attachment.cgi?id=53972
Loaded RTF document is blank

Problem description: 

  When I open some RTF files (but not all; so far it only appears to be RTFs
with text form fields), Writer starts just fine but only a single blank page is
shown.  The same document will load properly in AbiWord, MS Office 2003 and MS
Office 2010.  Writer still opens .ODF and .DOC files correctly.

  This did not happen previously (the problem did not exist as of two weeks
ago).

Steps to reproduce:
1. Double-click on RTF file within Nautilus file manager or
2. run 'libreoffice --writer document.rtf' from the command line.  No error
message occurs.
3. 

Current behavior:

  Some RTF documents will no longer open; only a blank, single page is shown.

Expected behavior:

  Document opens and displays correctly.

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Ubuntu; X11; Linux x86_64; rv:8.0) Gecko/20100101
Firefox/8.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43381] New: can't open hidden files

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43381

 Bug #: 43381
   Summary: can't open hidden files
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: support+freedesk...@oeko.net


I'm trying to import my templates which are under ~/.openoffice.org (I'm
migrating, and my OOo styles are being ignored at the moment). When I go to
File - Templates - Organize, I get a template selector box. When I choose
import, I get a file selector box which does not seem to have any option to
allow me to display hidden files or directories (those with a '.' as the first
character), so I'm hosed. Maybe I can work around this, but this should be
possible by default. The standard file selector box employed by FF can do it.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43382] New: can't import styles

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43382

 Bug #: 43382
   Summary: can't import styles
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: support+freedesk...@oeko.net


I have moved one of my OOo template files to a normal folder (not hidden), then
tried to import the file, and the styles. But whatever I do, the contained
page styles do not appear in the styles list, so I am barred from applying them
to any new document. I also didn't figure out how to load the styles
individually (they are listed in the import dialogue).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43383] New: FILEOPEN: via Hyperlink from document does not work

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43383

 Bug #: 43383
   Summary: FILEOPEN: via Hyperlink from document does not work
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Created attachment 53974
  -- https://bugs.freedesktop.org/attachment.cgi?id=53974
Test kit

Steps to reproduce with Server installation of MSVC Master LibO-dev 3.5.0 –
WIN7 Home Premium (64bit) ENGLISH UI [Build ID: a653e50-1f92ab1-3bd0388]
Win-x86@6  - 28):

1. download and unzip TestKitLinktest.zip
2. Start LibO from WIN All Programs
   LibO Start Center appears
3. Menu 'File - open - WithLink2.ods - open'
   Spredsheet document will be opened
4. Click one of the links (with pressed control if necessary
   due to your security settings
   Expected: Document Linktarget.ods should be opened 
   Actual: Nothing

- Reported with Bug Submission Assistant -

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0.1) Gecko/2021
Firefox/8.0.1 SeaMonkey/2.5

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43383] FILEOPEN: via Hyperlink from document does not work

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43383

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

   Severity|normal  |critical
 CC||LibreOffice@bielefeldundbus
   ||s.de
   Keywords||regression

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 09:21:28 PST ---
Currently only WIN tested

An internal link to an other sheet worked

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43383] FILEOPEN: via Hyperlink from document does not work

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43383

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 OS/Version|All |Windows (All)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43384] New: FILESAVE: causes lots of messages or even impossible

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43384

 Bug #: 43384
   Summary: FILESAVE: causes lots of messages or even impossible
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: blocker
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Steps how to reproduce with parallel installation of Master LibO-dev 3.5.0 –
WIN7 Home Premium (64bit) English UI (Build ID:fba911f-2fcbe65-8b4f344-3bd0388)
(daily/Win-x86@7-MinGW/master/2011-11-25_08.14.45)

1. Start LibO from Win All Programs
   LibO Start Center appears
2. Click New Writer Document
   New Writer Document appears
3. Type an x
4. Save somewhere in a documents folder with menu 'File - Save As - x save'
   document will be saved and changes name to x
5.  Type another x
6. Click Disk Icon for Save
   Expected: Will be saved
   Actual: Error Saving the document x: Access  was denied
7. clicking several times ok will bring up some (other) error messages, 
   last message will disappear, but document will stay unsaved.

I also observed that with Calc (others not tested)

This would be a blocker.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43384] FILESAVE: causes lots of messages or even impossible

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43384

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Blocks||37361

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43061] INSERT DRAW generated SVG Does Not have WRITER Page Dimensions

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43061

rk...@yahoo.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |

--- Comment #5 from rk...@yahoo.com 2011-11-30 09:58:34 PST ---
There appears to be some confusion with this reported potential BUG. Please
note that it is not expected that all pictures in the world all have
reporter's page
height to width ratio. The provided example was perhaps unclear?

As stated in Comment #3: ...The potential problems occur when the default DRAW
view box size is inserted into the default page size of WRITER. The inserted
image does not fit so the view box must be re-sized within WRITER...

The following attachment will, hopefully, clarify the desired behavior. Please
note that the potential BUG has to do with the Default DRAW and Default WRITER
Dimensions, and although all pictures may be distorted the images that are most
at risk are the images that rely on the Dimensions of the View Box in DRAW to
match the Dimensions of imported DRAW image within WRITER.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43061] INSERT DRAW generated SVG Does Not have WRITER Page Dimensions

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43061

--- Comment #7 from rk...@yahoo.com 2011-11-30 10:05:42 PST ---
Created attachment 53978
  -- https://bugs.freedesktop.org/attachment.cgi?id=53978
An Example of an Image that fits DRAW's Default Page Dimensions

Step 2:

Use LibO DRAW to save the image with the default dimensions of the DRAW view
box using File - Export... Select File type of SVG.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43061] INSERT DRAW generated SVG Does Not have WRITER Page Dimensions

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43061

--- Comment #8 from rk...@yahoo.com 2011-11-30 10:10:34 PST ---
Created attachment 53979
  -- https://bugs.freedesktop.org/attachment.cgi?id=53979
An Example of Unmatching Default DRAW Dimensions and Default WRITER Dimensions

Step 3:

Use LibO WRITER to import the image with the default dimensions of DRAW's view
box using Insert - Picture - From File... Select the previously saved DRAW
image.

Please notice within the attachment that DRAW's default dimensions do NOT match
WRITER's default dimensions.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38171] rpm -Uvh does not upgrade

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38171

Todd toddandma...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |

--- Comment #4 from Todd toddandma...@gmail.com 2011-11-30 10:12:00 PST ---
No.  Actually, it does not work for me.  The problem was 3.3.2 to 3.4.x.  You
are basing your assessment on upgrading from 3.4.x to 3.4.x+1.

Only close this if the 3.3.x branch is defunct and no one will be upgrading
from it to 3.4.x.

To do so, by the way, requires a complete uninstall of 3.3.x and a fresh new
install of 3.4.x.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 34641] Start focus in Print dialog inconsitent

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34641

Ivan Timofeev timofeev@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|libreoffice-b...@lists.free |timofeev@gmail.com
   |desktop.org |

--- Comment #5 from Ivan Timofeev timofeev@gmail.com 2011-11-30 10:16:43 
PST ---
The focus moved to the printer selection for now, I will discuss this issue
with the UX team. Changes will be in the LibreOffice 3.5.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42614] calc: print preview / export as pdf not working on some documents

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42614

--- Comment #4 from rgdavis...@comcast.net 2011-11-30 10:19:01 PST ---
I have run into this before.  I have seen this way back in OO 2.x if I remember
correctly.  The print ranges on all but the last tab are getting set to none. 
You can select the sheet tab and reset the print range (Format-Print
Ranges-Edit) or the save to excel and resave to ods work also.  Don't know
what causes it but it always happens when I have more sheet tabs.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43387] New: pdf's fail to import; OO extensions loading components library failed:....pdfimport.uno.so

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43387

 Bug #: 43387
   Summary: pdf's fail to import; OO extensions loading
components library failed:pdfimport.uno.so
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: All
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: PDF export
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: intuiti...@europe.com


Pdf's are not imported properly in LibreO3.4.4 (Writer or Draw) on Ubuntu
11.04, as they used to previously in OOo. They come out as almost random
looking text. Attempts to add Pdfimport 1..04 cause error 

 loading components library
failed:file:///home/myaccount/.libreoffice/3/user/uno_packages/cache/uno_packages/luv5gsoe.tmp_/oracle-pdfimport.oxt/pdfimport.uno.so

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43388] New: Crash (Runtime error) when using solver

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43388

 Bug #: 43388
   Summary: Crash (Runtime error) when using solver
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: alexander.buch...@gmx.de


Created attachment 53981
  -- https://bugs.freedesktop.org/attachment.cgi?id=53981
Example file for crash

I just noticed an error when using the solver module in calc. I will attach an
example file.

In this file, go Tools, Solver.

- Target cell is $B$1.
- Optimize result to Minimum
- By changing cells $A$1:$A$2
- Limiting conditions: $A$3 should be Integer

Then hit Solve and calc crashes:

Microsoft Visual C++ Runtime Library

Runtime Error!

Program: C:\Program Files (x86)\LibreOffice 3.4\program\soffice.bin

This application has requested the Runtime to terminate it in an unusual
way. Please contact the application's support team for more information.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 41416] EDITING: CRASH after COPY/PASTE of Web page contents

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41416

--- Comment #3 from rk...@yahoo.com 2011-11-30 10:49:11 PST ---
Copy/Paste of Web page contents appears to function partially within LibO-dev
3.5.0.
Build ID: 8f87c3d-5d03837-adcf6d5-c4bb9bd
On OSX 10.6.8

LibO does not crash, but it will HANG when copying a lot of Web page content
including images, etc. Force Quit... of LibO was required to quit.

Same result with LibreOffice 3.4.2 
OOO340m1 (Build:203)
On OSX 10.6.8

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43061] INSERT DRAW generated SVG Does Not have WRITER Page Dimensions

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43061

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 CC|LibreOffice@bielefeldundbus |
   |s.de|

--- Comment #10 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 11:05:29 PST ---
That's all known and all irrelevant, I'm tired with this useless discussion and
will invest my time for bugs, no longer for these NOTABUGs

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43384] FILESAVE: causes lots of error messages (access denied/ I/O errors) or even impossible

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43384

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
Summary|FILESAVE: causes lots of|FILESAVE: causes lots of
   |messages or even impossible |error messages (access
   ||denied/ I/O errors) or even
   ||impossible

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43390] New: Cannot cancel selections in writer using at-spi

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43390

 Bug #: 43390
   Summary: Cannot cancel selections in writer using at-spi
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: Other
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: madewokh...@gmail.com


Once something is selected in Writer, it's impossible to get Writer into a
normal state with nothing selected using at-spi. While calling
RemoveSelection(0) for a paragraph appears to work, it actually leaves writer
in a state where moving the caret, through keyboard/mouse input or
SetCaretOffset, will select a range from the beginning of the line to the new
caret offset. SetCaretOffset on its own does not cancel selections (I'm not
sure whether it should or not.).

I have a patch for this, but I think I need to understand things a bit better
before I can send it.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42810] FILESAVE: Pictures resized/moved each time document saved in MS XML/MS binary formats

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42810

sm...@fastmail.fm changed:

   What|Removed |Added

   Severity|normal  |major
   Priority|medium  |high

--- Comment #9 from sm...@fastmail.fm 2011-11-30 12:36:52 PST ---
sorry to do this but i'm going to up the importance a notch, it's an MS office
compatibility breaker and this makes it severe for probably the majority of
users?

not sure if i've categorised this wrong and that's caused it to be overlooked,
anyone please edit as needed. 

unfortunately i can't test under windows as I don't use windows any more, that
would be good for someone to do, so leaving platform on Linux (all) although
it's very possible others are affected.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43391] Images lost and wrong rendering when framed in a page with background image

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43391

Opentia Team consulto...@opentia.es changed:

   What|Removed |Added

   Priority|medium  |high
 CC||consulto...@opentia.es

--- Comment #1 from Opentia Team consulto...@opentia.es 2011-11-30 13:19:44 
PST ---
Addition: the same document shows no problem when edited on OpenOffice.org
3.2.0 OOO320m12 (Build: 9483)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43391] [EDITING] [SAVING] Images lost and wrong rendering when framed in a page with background image

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43391

Opentia Team consulto...@opentia.es changed:

   What|Removed |Added

Summary|Images lost and wrong   |[EDITING] [SAVING] Images
   |rendering when framed in a  |lost and wrong rendering
   |page with background image  |when framed in a page with
   ||background image

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43391] [EDITING] [VIEWING] [FILESAVE] Images lost and wrong rendering when framed in a page with background image

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43391

Opentia Team consulto...@opentia.es changed:

   What|Removed |Added

Summary|[EDITING] [SAVING] Images   |[EDITING] [VIEWING]
   |lost and wrong rendering|[FILESAVE] Images lost and
   |when framed in a page with  |wrong rendering when framed
   |background image|in a page with background
   ||image

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43398] New: FORMATTING: Documents opened in LibreOffice Writer incorrectly appear as right justified

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43398

 Bug #: 43398
   Summary: FORMATTING: Documents opened in LibreOffice Writer
incorrectly appear as right justified
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: sma...@labarchives.com


Created attachment 53987
  -- https://bugs.freedesktop.org/attachment.cgi?id=53987
ZIP file contains a PDF explaining the issue with screenshots from LibreOffice
and Word and the sample document used.

Problem description: 

The attached file contains a PDF with the details of the issue and a sample
document that exhibits can be used to see the issue.  The document shows as
RIGHT justified/aligned in LibreOffice when it is LEFT justified/aligned in
Word 2007/2010.

Steps to reproduce:
1. Open the Test_document.docx included in the ZIP file
2. Notice that the text in the document is RIGHT justified when it should be
LEFT justified (as in Word)

Current behavior:
Word 2007/2010 docx document in LibreOffice has improper
justification/alignment (LEFT) when opened

Expected behavior:
Should appear properly RIGHT justified in LibreOffice


Platform (if different from the browser): 

Ubuntu OS
LibreOffice 3.4.4 (release)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43398] FORMATTING: Documents opened in LibreOffice Writer incorrectly appear as right justified

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43398

--- Comment #1 from sma...@labarchives.com 2011-11-30 19:45:32 PST ---
The current and expected behavior should actually be:

Current behavior:
Word 2007/2010 docx document in LibreOffice has improper
justification/alignment (RIGHT) when opened

Expected behavior:
Should appear properly LEFT justified in LibreOffice

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43399] New: Address data source wizard will not allow the definition of a Spreadsheet connection setting

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43399

 Bug #: 43399
   Summary: Address data source wizard will not allow the
definition of a Spreadsheet connection setting
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jacobsallans...@gmail.com


1. Create a writer document, say MailMergeTest.odt.
2. File  Wizards  Address Data Source.
3. There is only one choice for address book type for my operating system:
Other external data source.  Choose it.
4. Click Next

An error dialog reading The connection to the external data source could not
be established.  No SDBC driver was found for the given URL.

5. Click More

The error dialog that appears reads says that this is SQL Status: HY000.

6. OK
7. OK
8. Cancel

The expectation is that Next will allow us to advance to do Connection
Settings and define the database type as Spreadsheet.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35690] [EasyHack] Subsequenttest failures

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35690

Bug 35690 depends on bug 35657, which changed state.

Bug 35657 Summary: complex.writer.TextPortionEnumerationTest fails
https://bugs.freedesktop.org/show_bug.cgi?id=35657

   What|Old Value   |New Value

 Resolution||FIXED
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43400] Left and right page margin possible to drag-and-drop to meet and overlap

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43400

--- Comment #1 from Georg stigge...@hotmail.com 2011-11-30 21:25:25 PST ---
Created attachment 53988
  -- https://bugs.freedesktop.org/attachment.cgi?id=53988
Demonstration of the bug

Attachment was too big. Trying with a zipped version.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43401] New: Page size increases to 45 when moving margin and indent markings are overlapping

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43401

 Bug #: 43401
   Summary: Page size increases to 45 when moving margin and
indent markings are overlapping
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.3.4 release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: stigge...@hotmail.com


Created attachment 53989
  -- https://bugs.freedesktop.org/attachment.cgi?id=53989
Demonstration of the bug

If moving the left indentation marker (the hour glass on the top ruler)
beyond the right of the right indentation marker (the triangle on the top
ruler) and then try to drag-and-drop the left margin, the page size is
automatically scaled up to over 45

Steps to reproduce:
1) Create a document with some content
2) For a line with some text on it, move the right indentation marker (the
triangle on the top ruler) to the 6 mark on the ruler
3) Still on the same line, press the Increase Indent icon on the tool bar
repeatedly until it's at 7 or more.
4) Try and drag-and-drop the left margin in the ruler

Expected Result:
- Moving the left margin within the permitted constraints

Actual Result:
- The page is resized to over 45
- The margins seems to overlap
- In the page format dialog, the page with is updated, but the page type (e.g.
Letter) has not changed to Custom
- The content of the document is moved outside the visible part of the document

Notes:
- See the attached video for demonstration of this bug
- If opening the page format dialog and clicking ok, the page is also
visually resized to 45. The page can be restored t normal by selecting a page
type (e.g. A4)
- MS Word 2007 has a very similar behavior (it switches to preview mode and
it's not possible to select print mode)

Platform:
Libre Office: LibreOffice 3.3.4, OOO330m19 (Build:401), tag
libreoffice-3.3.3.1, Ubuntu package 1:3.3.4-0ubuntu1
Ubuntu 11.04: 2.6.38-13-generic #52-Ubuntu SMP x86_64 x86_64 x86_64 GNU/Linux

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43388] Crash (Runtime error) when using SCO (or DEPS) Evolutionary Algorithm Solver

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43388

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 AssignedTo|libreoffice-b...@lists.free |kohei.yosh...@gmail.com
   |desktop.org |
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1
Summary|Crash (Runtime error) when  |Crash (Runtime error) when
   |using solver|using SCO (or DEPS)
   ||Evolutionary Algorithm
   ||Solver

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 22:04:01 PST ---
[Reproducible] with reporter's sample and LibreOffice 3.4.4  - WIN7 Home
Premium (64bit) German UI [OOO340m1 (Build:402)]. LibO Linear solver will not
crash.

Error Message is: Microsoft Visual C++ Runtime Library
Runtime Error
Program C:\.\soffice.bin
This applicaton has requested the runtime to terminate it in an unusúal way.
Please contact the application's support team for more information.

Not a regression, 3.3.3 also crashes.

Bug of feature? Master only has the Linear solver what will not crash

@David: 
Help and Documentation might be affected.

LibreOffice 3 Calc Guide:
The default solver supports only linear equations. For nonlinear programming
requirements, try the EuroOffice Solver or Sun’s Solver for Nonlinear
Programming
[Beta]. Both are available from the LibreOffice extensions repository.

For 3.4.4 that's not correct, SCO Evolutionary Algorithm Solver and DEPS
Evolutionary Algorithm Solver indeed are Extensions, but they are in the
installation bundle and can not be removed.

For 3.5 those 2 Solvers no longer are in the installation bundle, but they are
not available from http://extensions.libreoffice.org/.

@Kohei:
Please feel free to reassign (or reset Assignee to default) if it’s not your
area or if provided information is not sufficient. Please set Status to
ASSIGNED if you accept this Bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43403] New: : Crash Install on corparate Win7

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43403

 Bug #: 43403
   Summary: : Crash Install on corparate Win7
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4 Daily
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: vitas...@mail.ru


Problem description: 
Crash Install on corparate Win7

Steps to reproduce:
1. Power on my PC
2. Run installer_ru
3. Crash with error 2908 and 1935

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.9.168 Version/11.52

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43403] : Crash Install on corparate Win7

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43403

--- Comment #1 from Rusber_Optic vitas...@mail.ru 2011-11-30 22:32:34 PST ---
Created attachment 53990
  -- https://bugs.freedesktop.org/attachment.cgi?id=53990
ScreenShot

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42660] Significant slow startup times and increased memory utilization compared to Oo 3.3 (FILEOPEN)

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42660

--- Comment #2 from Michael Pappas painful...@gmail.com 2011-11-30 23:00:43 
PST ---
I know this is collaborative software and asking for something free to be fixed
is straining things. But I must say that it is a pity indeed that a critical
issue like this one did not end up in the hands of a developer...

Once more: OpenOffice on 512Mb RAM systems is just fine. Libreoffice 3.4.3 is,
comparatively, a RAM-starved behemoth. Loading times suffer a lot.

Please do have a look at this issue, I am sure it can easily be reproduced in a
512Mbyte Virtual machine!

Remember that LibO requirements state 256 Mb RAM (512 Mb RAM recommended);...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43179] PDF/A export of powerpoint slides gives DCTDecode error on validation

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43179

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 23:38:24 PST ---
@Qubit:
Do you also observe the problem with 3.4.4 or only with master?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43087] Stylesheet edit and remove

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43087

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-30 23:53:58 PST ---
@Stefan Lindel
May be it's because of the Table cell protection?
I asked you 13 questions and got 1 answer, that's a really poor relation.
Please check my suspect and if you can't confirm it please contribute the
missing requested information.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs