[Libreoffice-bugs] [Bug 98493] UI : "SCENARIO SELECTION IN NAVIGATOR (sheet group)" displaying wrong sheet after double-click on scenario

2016-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98493

Eike Rathke  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |chpa...@gmail.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98493] UI : "SCENARIO SELECTION IN NAVIGATOR (sheet group)" displaying wrong sheet after double-click on scenario

2016-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98493

Eike Rathke  changed:

   What|Removed |Added

Version|5.0.4.2 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 98493] UI : "SCENARIO SELECTION IN NAVIGATOR (sheet group)" displaying wrong sheet after double-click on scenario

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

--- Comment #5 from Alexis PAQUIN  ---
Hey,

There here is : https://gerrit.libreoffice.org/28697

Sorry for the delay :/

Bests regards

Alexis

-- 
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 98493] UI : "SCENARIO SELECTION IN NAVIGATOR (sheet group)" displaying wrong sheet after double-click on scenario

2016-03-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98493

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #4 from Buovjaga  ---
Confirmed.
Refer to this bug like tdf#98493 in your patch commit message.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.2.0.0.alpha0+
Build ID: 235411c9d47ecba88e46d859ea93bcecefb0c46e
CPU Threads: 8; OS Version: Linux 4.4; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)
Built on March 11th 2016

-- 
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 98493] UI : "SCENARIO SELECTION IN NAVIGATOR (sheet group)" displaying wrong sheet after double-click on scenario

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98493

Alexis PAQUIN  changed:

   What|Removed |Added

Version|unspecified |5.0.4.2 release

--- Comment #3 from Alexis PAQUIN  ---
I found this on LO-5-0-4, didn't tried on earlier version.

Thanks Julien, i'll do it.

Best regards

-- 
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 98493] UI : "SCENARIO SELECTION IN NAVIGATOR (sheet group)" displaying wrong sheet after double-click on scenario

2016-03-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98493

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Which LO version have you used?

Perhaps you might be interested in submitting your patch to LO gerrit.
If yes, this link will guide you:
https://wiki.documentfoundation.org/Development/GetInvolved
(knowing that you've already done it a good part of it: find a bug, build LO,
create a patch, there are just a few steps left)

-- 
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 98493] UI : "SCENARIO SELECTION IN NAVIGATOR (sheet group)" displaying wrong sheet after double-click on scenario

2016-03-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98493

--- Comment #1 from Alexis PAQUIN  ---
I find a fix to this bug.

I have modify the navipi.cxx file.
(/sources/libo-core/sc/sources/navipi/navipi.cxx).

The method to modify is :
void ScNavigatorDlg::SetCurrentTableStr( const OUString& rName )

the orignal code was :

line 957

void ScNavigatorDlg::SetCurrentTableStr( const OUString& rName )
{
if (!GetViewData()) return;

ScDocument* pDoc = pViewData->GetDocument();
SCTAB nCount = pDoc->GetTableCount();
OUString aTabName;

for ( SCTAB i=0; iGetName( i, aTabName );
if ( aTabName.equals(rName) )
{
SetCurrentTable( i );
return;
}
}
}


and the fix is :


void ScNavigatorDlg::SetCurrentTableStr( const OUString& rName )
{
if (!GetViewData()) return;

ScDocument* pDoc = pViewData->GetDocument();
SCTAB nCount = pDoc->GetTableCount();
OUString aTabName;
SCTAB aLastSheet;

for ( SCTAB i=0; iGetName( i, aTabName );
if ( aTabName.equals(rName) )
{
/*check if this is a scenario*/
if ( pDoc->IsScenario(i) )
{
SetCurrentTable(aLastSheet);
return;
}
else
{
SetCurrentTable(i);
return;
}
}
else
{
if ( !pDoc->IsScenario(i) )
aLastSheet = i;
}
}
}


Do this fix can be integrate to LO ?

Best regards.

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