[Libreoffice-bugs] [Bug 97331] Crash conditional formatting, when scrolling on Icon set

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard| target:5.2.0   | target:5.2.0 target:5.1.1

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

--- Comment #7 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=5d29ed1801a07d4649e095c25935b50f5ad32eb4

Resolves: tdf#97331 use VclPtr instead of pointers to avoid crash

It will be available in 5.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

--- Comment #8 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "libreoffice-5-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=53e693ccfb19aa653ab2b5762c10ae87c9320954=libreoffice-5-1

Resolves: tdf#97331 use VclPtr instead of pointers to avoid crash

It will be available in 5.1.1.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

--- Comment #5 from m.a.riosv  ---
Created attachment 122172
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122172=edit
Screenshot crash scrolling mouse wheel.

Same crash scrolling with the mouse wheel in the style list box.

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

--- Comment #3 from Yan Pashkovsky  ---
LO crashes, so I guess this bug must be marked as CRITICAL

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

--- Comment #4 from Julien Nabet  ---
Sorry I forgot to pinpoint something:
it crashes in acceptableWheelScrollTarget method so
shouldReusePreviousMouseWindow must return true.
Reading this part:
   1320 //If the last event at the same absolute screen position was handled by
a
   1321 //different window then reuse that window if the event occurs within
1/2 a
   1322 //second, i.e. so scrolling down something like the calc sidebar that
contains
   1323 //widgets that respond to wheel events will continue to send the event
to the
   1324 //scrolling widget in favour of the widget that happens to end up under
the
   1325 //mouse.
   1326 static bool shouldReusePreviousMouseWindow(const SalWheelMouseEvent&
rPrevEvt, const SalWheelMouseEvent& rEvt)
   1327 {
   1328 return (rEvt.mnX == rPrevEvt.mnX && rEvt.mnY == rPrevEvt.mnY &&
rEvt.mnTime-rPrevEvt.mnTime < 500/*ms*/);
   1329 }
it means you must scroll fast enough to reproduce the crash (less than 0.5s
between each scroll)
Indeed, if I wait, let's say 1 sec for example, between each scroll, I got no
crash.

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

Yan Pashkovsky  changed:

   What|Removed |Added

 CC||yanp...@gmail.com
Version|5.2.0.0.alpha0+ Master  |5.0.1.2 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 97331] Crash conditional formatting, when scrolling on Icon set

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

Luke Picciau  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

Luke Picciau  changed:

   What|Removed |Added

 CC||luke.b.picc...@gmail.com

--- Comment #6 from Luke Picciau  ---
Was able to reproduce on Ubuntu

OS: Ubuntu 15.10
LO Version: 5.0.4.2
Build ID: 1:5.0.4~rc2-0ubuntu1~wily1
Locale: en-AU (en_AU.UTF-8)

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

Julien Nabet  changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #1 from Julien Nabet  ---
Caolan: noticing
http://cgit.freedesktop.org/libreoffice/core/log/?qt=range=641154c259334874bbbcb735f0064f3241f293ad,
thought you might have some idea about the cause of the attached bt showing vcl
part.

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

Adolfo Jayme  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=91
   ||489

-- 
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 97331] Crash conditional formatting, when scrolling on Icon set

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
Created attachment 122169
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122169=edit
Screenshot crash report.

I'm not able to reproduce:
Win10x64
Version: 5.2.0.0.alpha0+ Build ID: c81eddbb20c84280aa64c712e34c829380b24527
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-22_04:19:03

But my appreciation is that after make a selection, the list box loses the
focus.

I have found that:
Selecting other than 'All Cells', selecting an 'Apply Style' with mouse and
after changing the selected style with the up-arrow goes to crash, attached MV
C++ direct crash report.

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