[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2022-09-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Justin L  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |

--- Comment #31 from Justin L  ---
Proposed basic fix at http://gerrit.libreoffice.org/c/core/+/140455

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2022-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #30 from Justin L  ---
Created attachment 182624
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182624&action=edit
46733_columnDeleteScenarios.odt: extensive testing example

The problem is that we do a "select column" twice.
The first time is sw/source/core/frmedt/fetab.cxx's SwFEShell::DeleteCol
GetTableSel( *this, aBoxes, SwTableSearchType::Col );

and the second is SwTable::ExpandColumnSelection

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2021-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #29 from zhouss...@gmail.com ---
Replicated the Report
I installed Writer in my computer which is Windows 10.0.18363, x64-based PC. 
Follow the steps, I could reproduce the issue. 
Just step 3 and 4, I modify a bit with : 
3) Select a cell of a different row in one of these columns
4) right click, and select "delete" --"columns"

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2021-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #28 from BogdanB  ---
Also in
Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 5b025285b3528910a4360899abb2bbbaadc72c97
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2021-04-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #27 from Christian Lehmann  ---
The case is even more serious, since the attempt to only delete a column can
delete the entire table:

The table has 3 columns and three rows.
I merge the cells of row #3.
In column 3, I select the cells in row #1 and row #2.
>From the icons menus, I select Delete selected columns.
Result: My table is deleted.
Expected: The selected columns should be deleted, i.e. merged into a
neighboring column.

Thus, after nine years, the original report by uls6502 can be confirmed 100%,
although this is a rather serious bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2020-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #26 from Mike Kaganski  ---
*** Bug 138602 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2020-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #25 from Justin L  ---
(In reply to Aron Budea from comment #24)
> What if we didn't bother with the complicated cases

We already don't bother with the complicated case, that is why we have this bug
report. This bug is complicated because it contains merged cells.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2020-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #24 from Aron Budea  ---
(In reply to Justin L from comment #23)
> > cells. This gets really complicated.
What if we didn't bother with the complicated cases, only with the simple,
well-structured ones? That's what users seem to care about, anyway. If
someone's designing their floor tiles with Writer tables, deleting rows/columns
is likely not part of their workflow ;).

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2020-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #23 from Justin L  ---
There is some good discussion in the linked OOo bug report on this.
Paraphrasing fyva...
> For tables with merged cells, there are no columns or rows, there are only
> cells. When you select a few cells and click "delete row" or "delete column",
> you can't delete neither a row nor a column (there are no rows, no columns),
> you can either delete the whole table or merge the cells with right, left,
> upper or lower cells, by your choice, because each cell have a lot of adjacent
> cells. This gets really complicated.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2020-09-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Timur  changed:

   What|Removed |Added

   Priority|medium  |high

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2019-04-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #22 from Buovjaga  ---
*** Bug 101091 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2019-04-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Buovjaga  changed:

   What|Removed |Added

   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=17245

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2019-04-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Buovjaga  changed:

   What|Removed |Added

 CC||de.tec...@gmail.com

--- Comment #21 from Buovjaga  ---
*** Bug 124304 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2018-07-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Zineta  changed:

   What|Removed |Added

Version|3.3.3 release   |Inherited From OOo

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2018-07-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #20 from Zineta  ---
Reproducible with  6.2.0.0.alpha0+

it seems issue inhereted from OOo

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2018-07-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Telesto  changed:

   What|Removed |Added

 CC||jtam...@gmail.com

--- Comment #19 from Telesto  ---
*** Bug 118997 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2018-06-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Xisco Faulí  changed:

   What|Removed |Added

 CC||ekber...@hotmail.com

--- Comment #18 from Xisco Faulí  ---
*** Bug 118111 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2018-02-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Korrawit Pruegsanusak  changed:

   What|Removed |Added

 Attachment #128063|application/octet-stream|application/vnd.oasis.opend
  mime type||ocument.text

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2018-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #17 from Todd  ---
still an issue in 6.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #16 from Todd  ---
Guys!

This was reported on 2012-02-28.  This bug is an ABSOLUTE PAIN IN THE ASS !!! 
If you let it go any longer, you guys might as well change your names to Open
Office.  They NEVER fixed their bugs either.

Fix this NOW.  Stop dragging your feet!  FOUR YEARS IS LONG ENOUGH!

Many thanks,
-T

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2016-12-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Jon Gerdes  changed:

   What|Removed |Added

 CC||gerd...@blueloop.net

--- Comment #15 from Jon Gerdes  ---
Bug present in 5.2.3.3

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2016-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Steve Edmonds  changed:

   What|Removed |Added

 CC||st...@edmondsfamily.co.nz

--- Comment #13 from Steve Edmonds  ---
Also present in 5.2.2.2.0.
Test case added where deleting middle column deletes table.

Work around, split spanning row to match columns, delete column, merge cells in
row to span.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2016-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #14 from Steve Edmonds  ---
Created attachment 128063
  --> https://bugs.documentfoundation.org/attachment.cgi?id=128063&action=edit
Test file

Deleting middle column deletes table.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2016-01-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #12 from Todd  ---
This bug has really become a pain-in-the-neck.  Any chance of getting it fixed
in the next sub release?

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2015-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #11 from Todd  ---
5.0.3.2

I noticed that if you try to delete a column that runs through a row that has
been merged, that the whole table gets deleted.

Any sign of our intrepid heroes working on this?

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2015-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Beluga  changed:

   What|Removed |Added

 CC||toddandma...@zoho.com

--- Comment #10 from Beluga  ---
*** Bug 96171 has been marked as a duplicate of this bug. ***

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2015-08-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Björn Michaelsen  changed:

   What|Removed |Added

Version|5.0.0.5 release |3.3.3 release

--- Comment #9 from Björn Michaelsen  ---
@qfsuar...@yahoo.es: Please dont change version field if you dont know what it
means (see also comment 6).

Setting version to 3.3.3 as it is the earliest affected (see comment 5).

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2015-08-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

Emersson Augusto Suarez Ortiz  changed:

   What|Removed |Added

Version|3.3.3 release   |5.0.0.5 release
   Severity|normal  |major

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2015-08-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #8 from Emersson Augusto Suarez Ortiz  ---
Hello to everybody. After read all the comments in this line, I have to inform
than the bug still exist and It is not the only one problem, if in the design
of the table, you merge all the cells of two column and finally two columns
become in one column and you have to delete other column, this disapper too and
only remind the columns than never has been merged at all.
The table need to handle the cells individually too, if you want to enlarge or
short any single cell, you can't do it.
I've tested in LibreOffice 5.0.0.5 in Win 8.1 and Ubuntu 14.04 64 bits both.

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2015-04-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #7 from Mike Kaganski  ---
Still REPRODUCIBLE with Version: 4.4.2.2
Build ID: c4c7d32d0d49397cad38d62472b0bc8acff48dd6
Locale: ru_RU

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2015-04-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

   *Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
   https://www.libreoffice.org/download/

   *If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

   *If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

   *Update the version field
   *Reply via email (please reply directly on the bug tracker)
   *Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so: 

1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug 
3. Leave a comment with your results. 
4a. If the bug was present with 3.3 - set version to "inherited from OOo"; 
4b. If the bug was not present in 3.3 - add "regression" to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-04-01

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2012-09-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46733

Christopher M. Penalver  changed:

   What|Removed |Added

   See Also||https://launchpad.net/bugs/
   ||462564
Version|3.3.4 release   |3.3.3 release

--- Comment #5 from Christopher M. Penalver  ---
Changing Version: 3.3.3 due to downstream report
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/462564 .

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2012-09-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46733

vanyasm...@gmail.com changed:

   What|Removed |Added

 CC||christopher.penal...@gmx.co
   ||m

--- Comment #4 from vanyasm...@gmail.com ---
*** Bug 48704 has been marked as a duplicate of this bug. ***

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2012-09-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46733

--- Comment #3 from vanyasm...@gmail.com ---
Created attachment 67608
  --> https://bugs.freedesktop.org/attachment.cgi?id=67608&action=edit
Table example

Now I've reproduced this bug in LibreOffice 3.5.4.2 on Ubuntu 12.04 x64 and
LibreOffice 3.6.1.2 on Archlinux x64.

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2012-05-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46733

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

 OS/Version|other   |All
 Status|UNCONFIRMED |NEW
 CC||sasha.libreoff...@gmail.com
 Ever Confirmed|0   |1
Version|LibO 3.5.0 Release  |LibO 3.3.4 release

--- Comment #2 from sasha.libreoff...@gmail.com 2012-05-24 05:35:15 PDT ---
reproduced also in 3.5.2 on Windows 7 32 bit
Changing version to 3.3.4 as most early reproducible, due to comment 2

-- 
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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2012-04-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46733

Jose Manuel  changed:

   What|Removed |Added

   Platform|x86 (IA32)  |All
 OS/Version|Linux (All) |other
Version|LibO 3.3.4 release  |LibO 3.5.0 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 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2012-04-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46733

Jose Manuel  changed:

   What|Removed |Added

   Platform|All |x86 (IA32)
 OS/Version|All |Linux (All)
Version|LibO 3.5.0 Release  |LibO 3.3.4 release

--- Comment #1 from Jose Manuel  2012-04-20 12:30:20 PDT 
---
[Reproducible] with "LibreOffice 3.3.4 - Ubuntu 11.04 (32bit) Spanish UI"

-- 
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