[Libreoffice-bugs] [Bug 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

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

--- Comment #9 from Buovjaga  ---
Whoops, my previous comment was for the function that was supposed to be used
as reference for a fix. Here is the one Oliver meant:

git blame -L 321,378 editeng/source/items/frmitems.cxx

e65c0fe553a9d editeng/source/items/frmitems.cxx (Thorsten Behrens
2011-03-12 02:42:58 +0100 321) bool SvxLRSpaceItem::QueryValue( uno::Any& rVal,
sal_uInt8 nMemberId ) const
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 322) {
45169c93d57ac editeng/source/items/frmitems.cxx (Norbert Thiebaud
2010-10-04 15:23:49 +0100 323) bool bRet = true;
3edb4611b2314 editeng/source/items/frmitems.cxx (Noel Grandin
2014-04-09 11:03:42 +0200 324) bool bConvert =
0!=(nMemberId_TWIPS);
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 325) nMemberId &= ~CONVERT_TWIPS;
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 326) switch( nMemberId )
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 327) {
65d891652fd5d editeng/source/items/frmitems.cxx (Albert Thuswaldner  
2011-02-16 16:34:02 -0500 328) // now all signed
723467bd88a50 editeng/source/items/frmitems.cxx (Szymon Kłos 
2016-05-31 16:57:13 +0200 329) case 0:
723467bd88a50 editeng/source/items/frmitems.cxx (Szymon Kłos 
2016-05-31 16:57:13 +0200 330) {
723467bd88a50 editeng/source/items/frmitems.cxx (Szymon Kłos 
2016-05-31 16:57:13 +0200 331)
css::frame::status::LeftRightMarginScale aLRSpace;
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 332) aLRSpace.Left =
static_cast(bConvert ? convertTwipToMm100(nLeftMargin) :
nLeftMargin);
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 333) aLRSpace.TextLeft =
static_cast(bConvert ? convertTwipToMm100(nTxtLeft) : nTxtLeft);
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 334) aLRSpace.Right =
static_cast(bConvert ? convertTwipToMm100(nRightMargin) :
nRightMargin);
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 335) aLRSpace.ScaleLeft =
static_cast(nPropLeftMargin);
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 336) aLRSpace.ScaleRight =
static_cast(nPropRightMargin);
3eba9b6819941 editeng/source/items/frmitems.cxx (Noel Grandin
2020-02-05 15:22:43 +0200 337) aLRSpace.FirstLine =
static_cast(bConvert ? convertTwipToMm100(nFirstLineOffset) :
nFirstLineOffset);
fa2389e3f5cbb editeng/source/items/frmitems.cxx (Noel Grandin
2020-02-05 15:21:41 +0200 338) aLRSpace.ScaleFirstLine =
static_cast(nPropFirstLineOffset);
723467bd88a50 editeng/source/items/frmitems.cxx (Szymon Kłos 
2016-05-31 16:57:13 +0200 339) aLRSpace.AutoFirstLine =
IsAutoFirst();
723467bd88a50 editeng/source/items/frmitems.cxx (Szymon Kłos 
2016-05-31 16:57:13 +0200 340) rVal <<= aLRSpace;
723467bd88a50 editeng/source/items/frmitems.cxx (Szymon Kłos 
2016-05-31 16:57:13 +0200 341) break;
723467bd88a50 editeng/source/items/frmitems.cxx (Szymon Kłos 
2016-05-31 16:57:13 +0200 342) }
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 343) case MID_L_MARGIN:
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 344) rVal <<=
static_cast(bConvert ? convertTwipToMm100(nLeftMargin) :
nLeftMargin);
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 345) break;
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 346) 
1bbb78e822803 svx/source/items/frmitems.cxx (Oliver Specht   
2000-11-01 15:09:10 + 347) case MID_TXT_LMARGIN :
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 348) rVal <<=
static_cast(bConvert ? convertTwipToMm100(nTxtLeft) : nTxtLeft);
1bbb78e822803 svx/source/items/frmitems.cxx (Oliver Specht   
2000-11-01 15:09:10 + 349) break;
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 350) case MID_R_MARGIN:
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 351) rVal <<=
static_cast(bConvert ? convertTwipToMm100(nRightMargin) :
nRightMargin);
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 352) break;
fd069bee7e57a 

[Libreoffice-bugs] [Bug 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

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

--- Comment #8 from Buovjaga  ---
Last changes for reference:

git blame -L 657,681 editeng/source/items/frmitems.cxx

538f276ae0414 editeng/source/items/frmitems.cxx (Chris Sherlock  
2016-02-09 09:21:53 +1100 657) bool SvxULSpaceItem::QueryValue( uno::Any& rVal,
sal_uInt8 nMemberId ) const
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 658) {
45169c93d57ac editeng/source/items/frmitems.cxx (Norbert Thiebaud
2010-10-04 15:23:49 +0100 659) bool bConvert =
0!=(nMemberId_TWIPS);
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 660) nMemberId &= ~CONVERT_TWIPS;
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 661) switch( nMemberId )
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 662) {
65d891652fd5d editeng/source/items/frmitems.cxx (Albert Thuswaldner  
2011-02-16 16:34:02 -0500 663) // now all signed
c04e60275f273 svx/source/items/frmitems.cxx (Kurt Zenker 
2004-02-25 15:07:38 + 664) case 0:
c04e60275f273 svx/source/items/frmitems.cxx (Kurt Zenker 
2004-02-25 15:07:38 + 665) {
eb012bf0a8dcd editeng/source/items/frmitems.cxx (Noel Grandin
2015-09-11 15:44:09 +0200 666)
css::frame::status::UpperLowerMarginScale aUpperLowerMarginScale;
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 667) aUpperLowerMarginScale.Upper =
static_cast(bConvert ? convertTwipToMm100(nUpper) : nUpper);
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 668) aUpperLowerMarginScale.Lower =
static_cast(bConvert ? convertTwipToMm100(nLower) : nPropUpper);
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 669) aUpperLowerMarginScale.ScaleUpper =
static_cast(nPropUpper);
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 670) aUpperLowerMarginScale.ScaleLower =
static_cast(nPropLower);
c04e60275f273 svx/source/items/frmitems.cxx (Kurt Zenker 
2004-02-25 15:07:38 + 671) rVal <<= aUpperLowerMarginScale;
c04e60275f273 svx/source/items/frmitems.cxx (Kurt Zenker 
2004-02-25 15:07:38 + 672) break;
c04e60275f273 svx/source/items/frmitems.cxx (Kurt Zenker 
2004-02-25 15:07:38 + 673) }
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 674) case MID_UP_MARGIN: rVal <<=
static_cast(bConvert ? convertTwipToMm100(nUpper) : nUpper); break;
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 675) case MID_LO_MARGIN: rVal <<=
static_cast(bConvert ? convertTwipToMm100(nLower) : nLower); break;
6f04bf5e90ff7 editeng/source/items/frmitems.cxx (Miklos Vajna
2012-03-08 18:50:59 +0100 676) case MID_CTX_MARGIN: rVal <<= bContext;
break;
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 677) case MID_UP_REL_MARGIN: rVal <<=
static_cast(nPropUpper); break;
54a8e708b4822 editeng/source/items/frmitems.cxx (Stephan Bergmann
2018-01-12 20:25:09 +0100 678) case MID_LO_REL_MARGIN: rVal <<=
static_cast(nPropLower); break;
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 679) }
45169c93d57ac editeng/source/items/frmitems.cxx (Norbert Thiebaud
2010-10-04 15:23:49 +0100 680) return true;
fd069bee7e57a svx/source/items/frmitems.cxx (Jens-Heiner Rechtien
2000-09-18 16:07:07 + 681) }

-- 
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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

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

Julien Nabet  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from Julien Nabet  ---
No feedback after at least 3 years, let's put this one to WFM then.

Oliver: don't hesitate to reopen this tracker if you still reproduce this and
by providing a minimum step by step process to reproduce this.

-- 
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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

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

--- Comment #6 from QA Administrators  ---
Dear Oliver Specht (CIB),

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
 Status|NEW |NEEDINFO

--- Comment #5 from Julien Nabet  ---
Is it still reproduceable with last LO version?
If yes, how to do this?

-- 
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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

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

--- Comment #4 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 with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

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) from
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:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

2017-07-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95697

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Blocks||105537

--- Comment #3 from Xisco Faulí  ---
Hi Oliver,
Do you know if this assert is still reproducible?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105537
[Bug 105537] [META] Assertion failed crashes
-- 
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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

2017-01-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95697

--- Comment #2 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 
(5.1.6 or 5.2.3  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 helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug-20170103

-- 
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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

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

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Beluga  ---
I believe you, so I set to NEW.

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