[Libreoffice-bugs] [Bug 40780] SLIDESHOW with custom animations: sound is lost with Linux

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40780

--- Comment #46 from Buovjaga  ---
(In reply to Mark Hung from comment #45)
> I didn't check how the original test file play. The file path is
> share/gallery/sounds/apert.wav in LibreOffice installation directory. It's
> about one second, may be cut off because of the effect duration.

I tested from scratch with different sounds, all behave the same.

-- 
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 123690] New: Write won't save the Landscape in docx

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123690

Bug ID: 123690
   Summary: Write won't save the Landscape in docx
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jared.an...@gmail.com

Description:
I built a document with first page as portrait and second page as landscape.  I
save as docx and close.  When I reopen, both pages are portrait.

It's works correctly in odt.

Steps to Reproduce:
1. Make document with first page portrait and add text
2. Second page landscape page style and add text
3. Save as docx and close file
4. Reopen file

Actual Results:
First page is portrait, second page is not landscape but is portrait.

Saved as docx

Expected Results:
First page is portrait and second page retains the landscape page style.


Reproducible: Always


User Profile Reset: No



Additional Info:
odt file format saves the doc correctly.

-- 
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-commits] online.git: 2 commits - configure.ac ios/Mobile

2019-02-24 Thread Libreoffice Gerrit user
 configure.ac  |   10 ++
 ios/Mobile/AppDelegate.mm |   10 --
 ios/Mobile/Info.plist.in  |2 +-
 3 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit 73ad6c300a25f42106cd0e4f1b645e9409f65cdd
Author: Tor Lillqvist 
AuthorDate: Mon Feb 25 09:07:44 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Mon Feb 25 09:14:14 2019 +0200

Bin some boilerplate comments

Change-Id: Ida0a8279f081d5b9c5d963d7d721e4c7c01f3a9e

diff --git a/ios/Mobile/AppDelegate.mm b/ios/Mobile/AppDelegate.mm
index 787a8a140..001f0f5c7 100644
--- a/ios/Mobile/AppDelegate.mm
+++ b/ios/Mobile/AppDelegate.mm
@@ -212,25 +212,18 @@ static void updateTemplates(NSData *data, NSURLResponse 
*response)
 }
 
 - (void)applicationWillResignActive:(UIApplication *)application {
-// Sent when the application is about to move from active to inactive 
state. This can occur for certain types of temporary interruptions (such as an 
incoming phone call or SMS message) or when the user quits the application and 
it begins the transition to the background state.
-// Use this method to pause ongoing tasks, disable timers, and invalidate 
graphics rendering callbacks. Games should use this method to pause the game.
 }
 
 - (void)applicationDidEnterBackground:(UIApplication *)application {
-// Use this method to release shared resources, save user data, invalidate 
timers, and store enough application state information to restore your 
application to its current state in case it is terminated later.
-// If your application supports background execution, this method is 
called instead of applicationWillTerminate: when the user quits.
 }
 
 - (void)applicationWillEnterForeground:(UIApplication *)application {
-// Called as part of the transition from the background to the active 
state; here you can undo many of the changes made on entering the background.
 }
 
 - (void)applicationDidBecomeActive:(UIApplication *)application {
-// Restart any tasks that were paused (or not yet started) while the 
application was inactive. If the application was previously in the background, 
optionally refresh the user interface.
 }
 
 - (void)applicationWillTerminate:(UIApplication *)application {
-// Called when the application is about to terminate. Save data if 
appropriate. See also applicationDidEnterBackground:.
 }
 
 - (BOOL)application:(UIApplication *)app openURL:(NSURL *)inputURL 
options:(NSDictionary *)options {
@@ -243,7 +236,6 @@ static void updateTemplates(NSData *data, NSURLResponse 
*response)
 DocumentBrowserViewController *documentBrowserViewController = 
(DocumentBrowserViewController *)self.window.rootViewController;
 [documentBrowserViewController revealDocumentAtURL:inputURL 
importIfNeeded:YES completion:^(NSURL * _Nullable revealedDocumentURL, NSError 
* _Nullable error) {
 if (error) {
-// Handle the error appropriately
 LOG_ERR("Failed to reveal the document at URL " << [[inputURL 
description] UTF8String] << " with error: " << [[error description] 
UTF8String]);
 return;
 }
@@ -254,8 +246,6 @@ static void updateTemplates(NSData *data, NSURLResponse 
*response)
 return YES;
 }
 
-// NSURLSessionDataDelegate methods
-
 @end
 
 // vim:set shiftwidth=4 softtabstop=4 expandtab:
commit ce53efd8805d52ead6d739f5aef68db1d56e1fe6
Author: Tor Lillqvist 
AuthorDate: Sun Feb 24 14:44:06 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Mon Feb 25 09:14:14 2019 +0200

Keep the iOS app bundle version in a file in the build folder, not in git

When you want to build a new version for distribution, bump the
build number in the BUNDLE-VERSION file.

Change-Id: I1e7e55528aef6d3526ce14d070ae96abc5931f38

diff --git a/configure.ac b/configure.ac
index dc8560e67..b99020a7a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -322,16 +322,26 @@ AC_SUBST(LOKIT_PATH)
 
 ENABLE_IOSAPP=
 MOBILE_APP_NAME="Mobile"
+IOSAPP_BUNDLE_VERSION=
 
 if test "$enable_iosapp" = "yes"; then
ENABLE_IOSAPP=true
if test -n "$with_iosapp_name"; then
   MOBILE_APP_NAME="$with_iosapp_name"
fi
+
+   if test -f BUNDLE-VERSION; then
+   IOSAPP_BUNDLE_VERSION=$(cat BUNDLE-VERSION)
+   else
+   IOSAPP_BUNDLE_VERSION=1
+   fi
+   echo $IOSAPP_BUNDLE_VERSION >BUNDLE-VERSION
 fi
+
 AC_SUBST(ENABLE_IOSAPP)
 AM_CONDITIONAL([ENABLE_IOSAPP], [test "$ENABLE_IOSAPP" = "true"])
 AC_SUBST(MOBILE_APP_NAME)
+AC_SUBST(IOSAPP_BUNDLE_VERSION)
 
 ENABLE_GTKAPP=
 if test "$enable_gtkapp" = "yes"; then
diff --git a/ios/Mobile/Info.plist.in b/ios/Mobile/Info.plist.in
index d0f0e76f9..5dd1931e1 100644
--- a/ios/Mobile/Info.plist.in
+++ b/ios/Mobile/Info.plist.in
@@ -197,7 +197,7 @@
 CFBundleShortVersionString
 0.1
 CFBundleVersion
-16
+@IOSAPP_BUNDLE_VERSION@
 LSRequiresIPhoneOS
 
 UIFileSharingEnabled
___
Libreoffice-commits mailing list

[Libreoffice-commits] core.git: 2 commits - connectivity/source cui/source

2019-02-24 Thread Libreoffice Gerrit user
 connectivity/source/drivers/file/FPreparedStatement.cxx  |3 --
 connectivity/source/drivers/file/FResultSet.cxx  |1 
 connectivity/source/drivers/file/FStatement.cxx  |4 --
 connectivity/source/drivers/file/fanalyzer.cxx   |5 ---
 connectivity/source/drivers/file/fcomp.cxx   |1 
 connectivity/source/drivers/mork/MPreparedStatement.cxx  |1 
 connectivity/source/drivers/mork/MResultSet.cxx  |1 
 connectivity/source/drivers/mork/MResultSet.hxx  |4 --
 connectivity/source/drivers/mozab/bootstrap/MNSINIParser.cxx |3 --
 connectivity/source/drivers/mozab/bootstrap/MNSINIParser.hxx |1 
 connectivity/source/drivers/mysqlc/mysqlc_connection.cxx |2 -
 connectivity/source/drivers/mysqlc/mysqlc_connection.hxx |1 
 connectivity/source/drivers/writer/WTable.cxx|4 --
 connectivity/source/inc/file/FResultSet.hxx  |4 --
 connectivity/source/inc/file/fanalyzer.hxx   |2 -
 connectivity/source/inc/file/fcomp.hxx   |1 
 connectivity/source/inc/writer/WTable.hxx|1 
 cui/source/customize/SvxToolbarConfigPage.cxx|3 --
 cui/source/customize/acccfg.cxx  |8 -
 cui/source/dialogs/colorpicker.cxx   |4 --
 cui/source/dialogs/hlmarkwn.cxx  |2 -
 cui/source/inc/SvxToolbarConfigPage.hxx  |1 
 cui/source/inc/acccfg.hxx|   10 ---
 cui/source/inc/cuitabline.hxx|2 -
 cui/source/inc/hlmarkwn.hxx  |2 -
 cui/source/inc/tabstpge.hxx  |6 
 cui/source/inc/transfrm.hxx  |3 --
 cui/source/options/treeopt.cxx   |   15 ---
 cui/source/tabpages/tabline.cxx  |1 
 cui/source/tabpages/tabstpge.cxx |9 --
 cui/source/tabpages/tpline.cxx   |8 -
 cui/source/tabpages/transfrm.cxx |9 --
 32 files changed, 4 insertions(+), 118 deletions(-)

New commits:
commit d434bd5493443cd9af2e35fa540f931c1b3aa2bf
Author: Noel Grandin 
AuthorDate: Sun Feb 24 09:07:42 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Feb 25 08:05:58 2019 +0100

loplugin:unusedfields in cui

Change-Id: Idf3cea56649c0f6eeb6c901ac33b128eb2dd97fb
Reviewed-on: https://gerrit.libreoffice.org/68278
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/cui/source/customize/SvxToolbarConfigPage.cxx 
b/cui/source/customize/SvxToolbarConfigPage.cxx
index 174cf7f458ae..6775c37e4a86 100644
--- a/cui/source/customize/SvxToolbarConfigPage.cxx
+++ b/cui/source/customize/SvxToolbarConfigPage.cxx
@@ -939,9 +939,6 @@ void SvxToolbarEntriesListBox::BuildCheckBoxButtonImages( 
SvLBoxButtonData* pDat
 pData->SetImage(SvBmp::HIUNCHECKED,   GetSizedImage( *pVDev, aSize, 
CheckBox::GetCheckImage( rSettings, DrawButtonFlags::Default | 
DrawButtonFlags::Pressed)) );
 pData->SetImage(SvBmp::TRISTATE,  GetSizedImage( *pVDev, aSize, 
Image() ) ); // Use tristate bitmaps to have no checkbox for separator entries
 pData->SetImage(SvBmp::HITRISTATE,GetSizedImage( *pVDev, aSize, 
Image() ) );
-
-// Get image size
-m_aCheckBoxImageSizePixel = aImage.GetSizePixel();
 }
 
 Image SvxToolbarEntriesListBox::GetSizedImage(
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx
index 7f8abc0d83a0..a5a63eeba4bc 100644
--- a/cui/source/customize/acccfg.cxx
+++ b/cui/source/customize/acccfg.cxx
@@ -832,12 +832,6 @@ SfxAccCfgTabListBox_Impl::~SfxAccCfgTabListBox_Impl()
 disposeOnce();
 }
 
-void SfxAccCfgTabListBox_Impl::dispose()
-{
-m_pAccelConfigPage.clear();
-SvTabListBox::dispose();
-}
-
 /** select the entry, which match the current key input ... excepting
 keys, which are used for the dialog itself.
   */
@@ -904,7 +898,6 @@ SfxAcceleratorConfigPage::SfxAcceleratorConfigPage( 
vcl::Window* pParent, const
 Size aSize(LogicToPixel(Size(174, 100), MapMode(MapUnit::MapAppFont)));
 m_pEntriesBox->set_width_request(aSize.Width());
 m_pEntriesBox->set_height_request(aSize.Height());
-m_pEntriesBox->SetAccelConfigPage(this);
 get(m_pGroupLBox, "category");
 aSize = LogicToPixel(Size(78 , 91), MapMode(MapUnit::MapAppFont));
 m_pGroupLBox->set_width_request(aSize.Width());
@@ -1041,7 +1034,6 @@ void SfxAcceleratorConfigPage::InitAccCfg()
  frame::ModuleManager::create(m_xContext);
 m_sModuleLongName = xModuleManager->identify(m_xFrame);
 comphelper::SequenceAsHashMap 
lModuleProps(xModuleManager->getByName(m_sModuleLongName));
-

[Libreoffice-bugs] [Bug 119440] OO Writer 3.4.1 is much faster to launch than LO Writer 6.0.6

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119440

luca.mangane...@comune.trento.it changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|NEEDINFO|RESOLVED

--- Comment #11 from luca.mangane...@comune.trento.it ---
Since we now use quickstart, this bug doesn't appear anymore.

-- 
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-commits] core.git: 2 commits - accessibility/inc accessibility/source basctl/source chart2/source comphelper/source cppcanvas/source dbaccess/source include/comphelper include/oox oox/sou

2019-02-24 Thread Libreoffice Gerrit user
 accessibility/inc/standard/vclxaccessiblelistitem.hxx   |1 
 accessibility/source/standard/vclxaccessiblelistitem.cxx|2 
-
 basctl/source/basicide/baside3.cxx  |4 
--
 basctl/source/inc/baside3.hxx   |2 
-
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx |   17 
+-
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx |6 
---
 comphelper/source/misc/SelectionMultiplex.cxx   |   10 
-
 cppcanvas/source/inc/canvasgraphichelper.hxx|1 
 cppcanvas/source/tools/canvasgraphichelper.cxx  |9 
-
 dbaccess/source/core/api/RowSet.cxx |1 
 dbaccess/source/core/api/RowSetBase.cxx |4 
--
 dbaccess/source/core/api/RowSetCacheIterator.cxx|5 
--
 dbaccess/source/core/api/RowSetCacheIterator.hxx|3 
-
 dbaccess/source/core/misc/dsntypes.cxx  |1 
 dbaccess/source/inc/dsntypes.hxx|1 
 dbaccess/source/ui/app/AppIconControl.cxx   |1 
 dbaccess/source/ui/app/AppIconControl.hxx   |1 
 dbaccess/source/ui/browser/dbloader.cxx |4 
--
 dbaccess/source/ui/dlg/RelationDlg.cxx  |2 
-
 dbaccess/source/ui/dlg/dbwizsetup.cxx   |6 
+--
 dbaccess/source/ui/dlg/generalpage.cxx  |   16 
++---
 dbaccess/source/ui/dlg/generalpage.hxx  |   10 
+
 dbaccess/source/ui/inc/DExport.hxx  |1 
 dbaccess/source/ui/inc/FieldDescriptions.hxx|1 
 dbaccess/source/ui/inc/RelationDlg.hxx  |1 
 dbaccess/source/ui/inc/TokenWriter.hxx  |1 
 dbaccess/source/ui/inc/TypeInfo.hxx |2 
-
 dbaccess/source/ui/misc/DExport.cxx |7 
+---
 dbaccess/source/ui/misc/HtmlReader.cxx  |3 
-
 dbaccess/source/ui/misc/TokenWriter.cxx |   17 
--
 dbaccess/source/ui/misc/UITools.cxx |6 
+--
 dbaccess/source/ui/tabledesign/FieldDescriptions.cxx|5 
--
 include/comphelper/SelectionMultiplex.hxx   |   10 
-
 include/oox/drawingml/shapegroupcontext.hxx |2 
-
 oox/source/drawingml/shapegroupcontext.cxx  |5 
+-
 reportdesign/source/ui/dlg/Navigator.cxx|2 
-
 svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx   |1 
 svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx   |3 
-
 38 files changed, 23 insertions(+), 151 deletions(-)

New commits:
commit 970ca8de0be4c4cd9485170f3c56a34b4069eec2
Author: Noel Grandin 
AuthorDate: Sun Feb 24 09:15:32 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Feb 25 08:06:15 2019 +0100

loplugin:unusedfields in various

Change-Id: I31d0e6c3559af2e322fb474b97f3bbf4d5064831
Reviewed-on: https://gerrit.libreoffice.org/68280
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/accessibility/inc/standard/vclxaccessiblelistitem.hxx 
b/accessibility/inc/standard/vclxaccessiblelistitem.hxx
index 02eb11641755..d6fdb6f762bc 100644
--- a/accessibility/inc/standard/vclxaccessiblelistitem.hxx
+++ b/accessibility/inc/standard/vclxaccessiblelistitem.hxx
@@ -66,7 +66,6 @@ private:
 sal_uInt32  m_nClientId;
 
 rtl::Reference< VCLXAccessibleList > m_xParent;
-css::uno::Reference< css::accessibility::XAccessibleContext > 
m_xParentContext;
 
 virtual ~VCLXAccessibleListItem() override = default;
 /** this function is called upon disposing the component
diff --git a/accessibility/source/standard/vclxaccessiblelistitem.cxx 
b/accessibility/source/standard/vclxaccessiblelistitem.cxx
index b406725f519c..e674cd26e466 100644
--- a/accessibility/source/standard/vclxaccessiblelistitem.cxx
+++ b/accessibility/source/standard/vclxaccessiblelistitem.cxx
@@ -72,7 +72,6 @@ VCLXAccessibleListItem::VCLXAccessibleListItem(sal_Int32 
_nIndexInParent, const
 , m_xParent(_xParent)
 {
 assert(m_xParent.is());
-m_xParentContext = m_xParent->getAccessibleContext();
 ::accessibility::IComboListBoxHelper* pListBoxHelper = 
m_xParent->getListBoxHelper();
 if (pListBoxHelper)
 m_sEntryText = 

[Libreoffice-commits] core.git: dbaccess/source

2019-02-24 Thread Libreoffice Gerrit user
 dbaccess/source/core/api/KeySet.cxx   |8 -
 dbaccess/source/core/api/RowSet.cxx   |   32 ++---
 dbaccess/source/core/api/RowSetCache.cxx  |  108 +++---
 dbaccess/source/core/dataaccess/ModelImpl.cxx |   13 --
 dbaccess/source/core/dataaccess/bookmarkcontainer.cxx |   15 --
 dbaccess/source/core/dataaccess/datasource.cxx|2 
 dbaccess/source/core/misc/DatabaseDataProvider.cxx|4 
 dbaccess/source/filter/xml/xmlTableFilterList.cxx |5 
 dbaccess/source/filter/xml/xmlfilter.cxx  |3 
 dbaccess/source/ui/browser/genericcontroller.cxx  |   31 ++---
 dbaccess/source/ui/dlg/DbAdminImpl.cxx|2 
 dbaccess/source/ui/dlg/dbfindex.cxx   |   31 ++---
 dbaccess/source/ui/dlg/generalpage.cxx|8 -
 dbaccess/source/ui/dlg/indexdialog.cxx|   18 ---
 dbaccess/source/ui/dlg/indexfieldscontrol.cxx |9 -
 dbaccess/source/ui/misc/indexcollection.cxx   |   36 +-
 dbaccess/source/ui/querydesign/JAccess.cxx|4 
 dbaccess/source/ui/querydesign/JoinTableView.cxx  |7 -
 dbaccess/source/ui/querydesign/QueryTableView.cxx |   12 --
 dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx |   14 --
 dbaccess/source/ui/tabledesign/TEditControl.cxx   |9 -
 dbaccess/source/ui/tabledesign/TableController.cxx|   56 -
 dbaccess/source/ui/tabledesign/TableUndo.cxx  |   10 -
 23 files changed, 160 insertions(+), 277 deletions(-)

New commits:
commit 435b64ecb6289a5ebfb8474f81dac032aaccfa4c
Author: Arkadiy Illarionov 
AuthorDate: Sun Feb 24 17:09:03 2019 +0300
Commit: Noel Grandin 
CommitDate: Mon Feb 25 08:06:57 2019 +0100

Simplify containers iterations in dbaccess

Use range-based loop or replace with STL functions

Change-Id: I01b4d97fa77ef8daf88e8e006b9523a6b71786cf
Reviewed-on: https://gerrit.libreoffice.org/68286
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/dbaccess/source/core/api/KeySet.cxx 
b/dbaccess/source/core/api/KeySet.cxx
index e10d51f50326..f057b3de14e6 100644
--- a/dbaccess/source/core/api/KeySet.cxx
+++ b/dbaccess/source/core/api/KeySet.cxx
@@ -1080,8 +1080,8 @@ bool OKeySet::absolute_checked( sal_Int32 row, bool /* 
i_bFetchRow */ )
 if(!m_bRowCountFinal)
 bFetchedRow = fillAllRows();
 
-for(;row < 0 && m_aKeyIter != m_aKeyMap.begin();++row)
---m_aKeyIter;
+row = std::min(std::abs(row), 
static_cast(std::distance(m_aKeyMap.begin(), m_aKeyIter)));
+m_aKeyIter = std::prev(m_aKeyIter, row);
 }
 else
 {
@@ -1116,9 +1116,7 @@ bool OKeySet::absolute_checked( sal_Int32 row, bool /* 
i_bFetchRow */ )
 }
 else
 {
-m_aKeyIter = m_aKeyMap.begin();
-for(;row > 0 && m_aKeyIter != m_aKeyMap.end();--row)
-++m_aKeyIter;
+m_aKeyIter = std::next(m_aKeyMap.begin(), row);
 }
 }
 if ( !bFetchedRow )
diff --git a/dbaccess/source/core/api/RowSet.cxx 
b/dbaccess/source/core/api/RowSet.cxx
index 671f9d3abeea..5cff9d646dfb 100644
--- a/dbaccess/source/core/api/RowSet.cxx
+++ b/dbaccess/source/core/api/RowSet.cxx
@@ -103,24 +103,18 @@ 
com_sun_star_comp_dba_ORowSet_get_implementation(css::uno::XComponentContext* co
 #define NOTIFY_LISTENERS_CHECK(_rListeners,T,method)   
  \
 std::vector< Reference< XInterface > > aListenerSeq = 
_rListeners.getElements(); \

   \
-auto it = aListenerSeq.rbegin();   
   \
-const auto itEnd = aListenerSeq.rend();
   \
-   
   \
 _rGuard.clear();   
   \
-bool bCheck = true;
   \
-for ( ; it != itEnd; ) 
   \
-{  
   \
-try
   \
-{  
   \
-bCheck = static_cast< T* >( it->get() )->method(aEvt); 
   \
-if (!bCheck)   
   \
-break; 
   \
-}  
   \
-catch( RuntimeException& ) 
   \
-{  
   \
-} 

[Libreoffice-bugs] [Bug 120930] Help reports a feature that is not implemented in LibreOffice Calc

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120930

luca.mangane...@comune.trento.it changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|UNCONFIRMED |RESOLVED

--- Comment #3 from luca.mangane...@comune.trento.it ---
If the documentation is updated, this bug doesn't appear anymore :-)

-- 
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-commits] core.git: configure.ac

2019-02-24 Thread Libreoffice Gerrit user
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4187b2beaa3d1294cd5c76ec0b662f3f4fadc421
Author: Andrea Gelmini 
AuthorDate: Mon Feb 11 17:59:54 2019 +
Commit: Julien Nabet 
CommitDate: Mon Feb 25 07:51:50 2019 +0100

Fix typo

Change-Id: Iee70a15bb21ae1840e07583c958c094d37431d02
Reviewed-on: https://gerrit.libreoffice.org/68298
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/configure.ac b/configure.ac
index f20cf467edab..54cdf16f7faf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -464,7 +464,7 @@ if test -n "$with_android_ndk"; then
 # linker is required if you compile large parts of the code with -g. A 
32-bit linker just won't
 # manage to link the (app-specific) single huge .so that is built for the 
app in
 # android/source/ if there is debug information in a significant part of 
the object files.
-# (A 64-bit ld.gold grows to much over 10 gigabytes of virtual space when 
linking such a .so if
+# (A 64-bit ld.gold grows too much over 10 gigabytes of virtual space when 
linking such a .so if
 # all objects have been built with debug information.)
 case $build_os in
 linux-gnu*)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123686] Impossible to re-install LibreOffice: "Error 1714"

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123686

Andre Klapper  changed:

   What|Removed |Added

Summary|Impossible to install   |Impossible to re-install
   |LibreOffice |LibreOffice: "Error 1714"

--- Comment #1 from Andre Klapper  ---
Hi Pascal, which exact operating system is this about?

Does https://forum.openoffice.org/en/forum/viewtopic.php?f=6=78765 help?

-- 
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 123666] File open/save dialog size too small on Manjaro/KDE

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123666

Andre Klapper  changed:

   What|Removed |Added

Summary|file dialog opens too small |File open/save dialog size
   ||too small on Manjaro/KDE

-- 
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 123664] Allow easier entering of foreign language variants (i.e. accents) of characters on Mac OS

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123664

Andre Klapper  changed:

   What|Removed |Added

Summary|Foreign Characters  |Allow easier entering of
   ||foreign language variants
   ||(i.e. accents) of
   ||characters on Mac OS

-- 
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 123689] failure to show linked images

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123689

--- Comment #1 from Fred Sargent  ---
Created attachment 149563
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149563=edit
sample page

-- 
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 123689] New: failure to show linked images

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123689

Bug ID: 123689
   Summary: failure to show linked  images
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sart...@yahoo.com.au

Description:
On opening word 1997- 2003 documents, in many cases at least half of the linked
images are not displayed- yet many are. It appears arbitrary, some images from
the one folder are displayed, others are not. In other, similar, documents all
linked images are displayed. Also the links shown are incorrect, with the link
to the document itself included. I have only just recently downloaded
LibreOffice and I am looking for a substitute for Microsoft Word on a new
computer, but I must have this facility mentioned. I cannot complete the rest
of the form as I have no idea what is meant by the terms used.




Actual Results:
open a Word 1997- 2003 document with linked images

Expected Results:
as stated above


Reproducible: Always


User Profile Reset: No



Additional Info:
Shown the linked images

-- 
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 123479] Crash in: ScFormulaResult::GetMatrixFormulaCellToken()

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123479

--- Comment #4 from fiftyigfuci_f...@yahoo.co.jp ---
Just selecting D14 to D15 reproduces a crash.
Maybe there is a lifetime problem of rtl::Reference mxPoolHelper;

the log says
soffice.bin: /tinderbox/buildslave/source/libo-master/include/rtl/ref.hxx:177:
reference_type* rtl::Reference::operator->() const [with
reference_type = ScPoolHelper]: Assertion `m_pBody != __null' failed.
warn:desktop:31889:31889:desktop/source/app/sofficemain.cxx:82: minidump
generated: 

Reproduced in
master_dbg~2019-02-24_12.48.43_LibreOfficeDev_6.3.0.0.alpha0_Linux_x86-64_archive.tar.gz

-- 
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-commits] core.git: sw/source

2019-02-24 Thread Libreoffice Gerrit user
 sw/source/filter/ww8/ww8atr.cxx |   24 +---
 1 file changed, 1 insertion(+), 23 deletions(-)

New commits:
commit ae4e0a81753dd280f6b77b5ee61cf7e9f85e5cfe
Author: Justin Luth 
AuthorDate: Sat Jan 26 19:24:30 2019 +0300
Commit: Justin Luth 
CommitDate: Mon Feb 25 05:16:37 2019 +0100

tdf#116404 DOC: check locale if BiDi inherits Environment

In addition to the general patch, DOC needs to check the locale
setting when it "bails out". The functions were identical other
than that, so use the shared function instead.

Change-Id: I705c5ed39cd07d0df4abb40c622da499375ce7b1
Reviewed-on: https://gerrit.libreoffice.org/66965
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index 02085761e3e9..abbbd8922c08 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -4766,30 +4766,8 @@ void WW8AttributeOutput::FormatFrameDirection( const 
SvxFrameDirectionItem& rDir
 SvxFrameDirection nDir = rDirection.GetValue();
 
 if ( nDir == SvxFrameDirection::Environment )
-{
-if ( m_rWW8Export.m_bOutPageDescs )
-nDir = m_rWW8Export.GetCurrentPageDirection();
-else if ( m_rWW8Export.m_pOutFormatNode )
-{
-if ( m_rWW8Export.m_bOutFlyFrameAttrs )  //frame
-{
-nDir = m_rWW8Export.TrueFrameDirection(
-*static_cast(m_rWW8Export.m_pOutFormatNode) );
-}
-else if ( dynamic_cast< const SwContentNode *>( 
m_rWW8Export.m_pOutFormatNode ) !=  nullptr )   //pagagraph
-{
-const SwContentNode* pNd =
-static_cast(m_rWW8Export.m_pOutFormatNode);
-SwPosition aPos( *pNd );
-nDir = m_rWW8Export.m_pDoc->GetTextDirection( aPos );
-}
-else if ( dynamic_cast< const SwTextFormatColl *>( 
m_rWW8Export.m_pOutFormatNode ) !=  nullptr )
-nDir = SvxFrameDirection::Horizontal_LR_TB;//what else can 
we do :-(
-}
+nDir = GetExport( ).GetDefaultFrameDirection( );
 
-if ( nDir == SvxFrameDirection::Environment )
-nDir = SvxFrameDirection::Horizontal_LR_TB;//Set something
-}
 
 switch ( nDir )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123641] Emailmerge: can not connect to SMTP server with TLS

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123641

--- Comment #4 from Justin L  ---
Why do you think this not a duplicate of bug 63388 comment 39?
> A few related changes have resulted in this situation for LO 6.1
> -secure SMTP is now default with port 587 (StartTLS).
> -Port 465 uses smtp_ssl (regardless of the setting labeled SSL,
>  but which actually implements StartTLS in the case of SMTP).
>  SO, PORT 465 IS THE ONLY PORT THAT LIBREOFFICE CAN USE FOR SSL SMTP.
> Todo:
> 1) The term "SSL" is correct for POP3/IMAP settings in the authentication
> portion (right?), but for SMTP, "SSL" is different (and incompatible) with
> "StartTLS". Consider the three-way logic of comment 18.

Is there a reason you can't use port 587?

A patch commit message states:
> Port 465 was temporarily recommended, but OFFICIALLY has long since been
> abandoned. However, LOTS of documentation and ISPs still recommend it as
> the port to use. I confirmed that 465 DOES NOT support STARTTLS (in gmail)
> so it is specifically excluded.

-- 
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 115433] Formula box does not autofit to content while editing

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115433

--- 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 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 53035] Document Property “Total editing time” is not Updated if Option “Remove personal information on saving” is Set

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53035

--- Comment #15 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 112344] Display of Hyperlinks in Text Boxes and Drawing Objects is Different to Display in Normal Text

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112344

--- 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 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 115840] fileopen docx text on top left box is missing'

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115840

--- 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 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 105168] MPEG-2 Video (H.262) wont displayed in Impress on Windows

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105168

--- Comment #26 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 115854] In the text justified on some occasions (see example) it is difficult to point a character to edit it.

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115854

--- Comment #7 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 122591] There is no function "Set as preset pattern", nor styles, for shapes in Writer, Calc, Math, Base (styles for shapes exist in Draw/Impress)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122591

和尚蟹  changed:

   What|Removed |Added

Summary|There is no function "Set   |There is no function "Set
   |as preset pattern", nor |as preset pattern", nor
   |styles, for shapes in   |styles, for shapes in
   |Writer, Calc (styles for|Writer, Calc, Math, Base
   |shapes exist in |(styles for shapes exist in
   |Draw/Impress)   |Draw/Impress)

-- 
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 123078] format cloning does not work

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123078

Jack  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #3 from Jack  ---
The original text formatting was based on the default format. The issue does
not exist for text where the default has been overridden.

There is no issue here.

-- 
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-commits] core.git: readlicense_oo/license

2019-02-24 Thread Libreoffice Gerrit user
 readlicense_oo/license/LICENSE  |2 +-
 readlicense_oo/license/LICENSE.fodt |2 +-
 readlicense_oo/license/LICENSE.html |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 41e56742d0c1547004c43130fc73707a62791512
Author: Takeshi Abe 
AuthorDate: Fri Feb 22 15:45:11 2019 +0900
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Feb 25 02:10:56 2019 +0100

Link https://www.libreoffice.org in LICENSE

... instead of the http one.

Change-Id: Id66c3212bd56f7cb33501d834c26d70cafafc0d7
Reviewed-on: https://gerrit.libreoffice.org/68189
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/readlicense_oo/license/LICENSE b/readlicense_oo/license/LICENSE
index cae07236b293..333da9631336 100644
--- a/readlicense_oo/license/LICENSE
+++ b/readlicense_oo/license/LICENSE
@@ -21,7 +21,7 @@
 
This product has been created by The Document Foundation, incorporating
many modifications from different contributors, see
-   http://www.libreoffice.org/ for more details.
+   https://www.libreoffice.org/ for more details.
 
Note: Do not translate or localize this document. Only English version
is legally binding.
diff --git a/readlicense_oo/license/LICENSE.fodt 
b/readlicense_oo/license/LICENSE.fodt
index f243fb9d8b04..142bb4bd0f69 100644
--- a/readlicense_oo/license/LICENSE.fodt
+++ b/readlicense_oo/license/LICENSE.fodt
@@ -3125,7 +3125,7 @@
All trademarks and registered trademarks 
mentioned herein are the property of their respective owners.
Copyright © 2000–2019 LibreOffice 
contributors. All rights reserved.
This product is based on OpenOffice.org. 
Portions of this software are copyright © 2000-2011, Oracle and/or its 
affiliates.
-   This product has been created by The 
Document Foundation, incorporating many modifications from different 
contributors, see http://www.libreoffice.org/; text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">http://www.libreoffice.org/
 for more details.
+   This product has been created by The 
Document Foundation, incorporating many modifications from different 
contributors, see https://www.libreoffice.org/; text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">https://www.libreoffice.org/
 for more details.
Note: Do not translate or 
localize this document. Only English version is legally binding.

 
diff --git a/readlicense_oo/license/LICENSE.html 
b/readlicense_oo/license/LICENSE.html
index 4af04dbc45bb..1e85535cc3ec 100644
--- a/readlicense_oo/license/LICENSE.html
+++ b/readlicense_oo/license/LICENSE.html
@@ -115,4 +115,4 @@
.Variable { font-style:italic; }

.Sect1 .T4  { }

... etc. - the rest is truncated
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 40780] SLIDESHOW with custom animations: sound is lost with Linux

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40780

--- Comment #45 from Mark Hung  ---
I didn't check how the original test file play. The file path is
share/gallery/sounds/apert.wav in LibreOffice installation directory. It's
about one second, may be cut off because of the effect duration.

-- 
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 118112] Parameter index out of range (1 > number of parameters, which is 0).

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118112

--- Comment #37 from Roland  ---
It's the same with LO 6.1 and 6.2 and Mysql 5.7  on Linux Mint 18.2.
I also have this after upgrading LO. My subforms don't show anything anymore
and I get the same error message, using the native MySQL connector or JDBC
connectors (8.0.13, 5.1.23). I tried to find a solution that I could understand
but no success.
It all worked properly up to 6.0.7.3.
So the only solution was (thnx Dan Lewis) falling back to 6.0.7.3  :-(
It's an important database with many forms, so no more upgrading until an easy
to understand solution is available.  Would be really nice if a migration tool
of some kind for pre 6.1 odbs could be provided.

-- 
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-commits] core.git: sd/inc sd/source sd/xml

2019-02-24 Thread Libreoffice Gerrit user
 sd/inc/strings.hrc  |1 +
 sd/source/ui/animations/CustomAnimationList.cxx |2 ++
 sd/xml/effects.xml  |6 +++---
 3 files changed, 6 insertions(+), 3 deletions(-)

New commits:
commit df8629e14f522d9116d81bdc09dad4b438e4e2cf
Author: Mark Hung 
AuthorDate: Sun Feb 24 13:09:28 2019 +0800
Commit: Mark Hung 
CommitDate: Mon Feb 25 01:30:19 2019 +0100

sd: fix preset class for media call effects.

Change-Id: I2a2a72a3a19beb9911fa694e983945480029ae0d
Reviewed-on: https://gerrit.libreoffice.org/68276
Tested-by: Jenkins
Reviewed-by: Mark Hung 

diff --git a/sd/inc/strings.hrc b/sd/inc/strings.hrc
index c0d6631d5b19..02f709408d72 100644
--- a/sd/inc/strings.hrc
+++ b/sd/inc/strings.hrc
@@ -442,6 +442,7 @@
 #define STR_CUSTOMANIMATION_EMPHASIS
NC_("STR_CUSTOMANIMATION_EMPHASIS", "Emphasis: %1")
 #define STR_CUSTOMANIMATION_EXIT
NC_("STR_CUSTOMANIMATION_EXIT", "Exit: %1")
 #define STR_CUSTOMANIMATION_MOTION_PATHS
NC_("STR_CUSTOMANIMATION_MOTION_PATHS", "Motion Paths: %1")
+#define STR_CUSTOMANIMATION_MISC
NC_("STR_CUSTOMANIMATION_MISC", "Misc: %1")
 #define STR_SLIDETRANSITION_NONE
NC_("STR_SLIDETRANSITION_NONE", "None")
 
 #define STR_ANNOTATION_TODAY
NC_("STR_ANNOTATION_TODAY", "Today," )
diff --git a/sd/source/ui/animations/CustomAnimationList.cxx 
b/sd/source/ui/animations/CustomAnimationList.cxx
index d3f88d483f1d..a3c210d55013 100644
--- a/sd/source/ui/animations/CustomAnimationList.cxx
+++ b/sd/source/ui/animations/CustomAnimationList.cxx
@@ -253,6 +253,8 @@ CustomAnimationListEntryItem::CustomAnimationListEntryItem( 
const OUString& aDes
 msEffectName = SdResId(STR_CUSTOMANIMATION_EMPHASIS); break;
 case EffectPresetClass::MOTIONPATH:
 msEffectName = SdResId(STR_CUSTOMANIMATION_MOTION_PATHS); break;
+default:
+msEffectName = SdResId(STR_CUSTOMANIMATION_MISC); break;
 }
 msEffectName = msEffectName.replaceFirst( "%1" , 
CustomAnimationPresets::getCustomAnimationPresets().getUINameForPresetId(mpEffect->getPresetId()));
 }
diff --git a/sd/xml/effects.xml b/sd/xml/effects.xml
index b7789383ed27..393ad5d50263 100644
--- a/sd/xml/effects.xml
+++ b/sd/xml/effects.xml
@@ -2641,21 +2641,21 @@
 
 
 
-
+
 
 
 
 
 
 
-
+
 
 
 
 
 
 
-
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

How to get a bitmap of page or shape in a unit test?

2019-02-24 Thread Regina Henschel

Hi all,

the current implementation of custom shape commands U and T 
(angleellipse) is wrong in the way, that for a command U with a series 
parameter groups only the first it treated as command U but the second 
as command T. Thus a line is drawn, where no line should be. My patch 
fixes this.
I now want to make a unit test for it. I thought, that I make a bitmap 
from the page or from the shape and look, whether the pixel at the place 
of the line has the stroke color or the background color. But I cannot 
create a bitmap.


I have tried to do it the same as in SdImportTest::testTdf93124 in 
import-tests.cxx in sd/qa/unit. But I only get a bitmap of the page 
without the shape.


I have some other ideas, but without success:
Save the file and examine the thumbnail. How can I load the thumbnail 
out of a package?
Using dispatcher and convert the shape to a bitmap. How to use 
dispatcher in a unit test? I only now it from macros.


Other methods to get a bitmap from a page or shape?

Or do methods exists to get the color at a position without bitmap?

Or any other idea, how to test it? The erroneous line is always between 
the segments, so that my trick of the other tests, to look at the 
bounding box, does not work here.


Kind regards
Regina

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 123688] Formulae not saved correctly in .docx format in Writer (divides is changed to | on save)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123688

--- Comment #1 from Charles Malpas  ---
Created attachment 149562
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149562=edit
Test document showing error

-- 
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 123688] New: Formulae not saved correctly in .docx format in Writer (divides is changed to | on save)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123688

Bug ID: 123688
   Summary: Formulae not saved correctly in .docx format in Writer
(divides is changed to | on save)
   Product: LibreOffice
   Version: 6.1.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: charlesmal...@gmail.com

Description:
I have a strange bug in Writer. If I create a formula via Insert > Object >
Formula... such as:

P left (B divides D right ) = sum from {k = 1} to {k} {P} left (B divides {M}
rsub {k} , D right ) P left ({M} rsub {k} divides D right )

It appears to be normal. When I save as a .docx, then close and reopen the
document, the formula has changed to

P left (B | D right ) = sum from {k = 1} to {k} {P} left (B | {M} rsub {k} , D
right ) P left ({M} rsub {k} | D right )

The divides have been changed to | in the formula itself. The | then render as
a weird 'V'. This error does not occur when saving as an .odt file. 

System info:

Version: 6.2.0.3
Build ID: 98c6a8a1c6c7b144ce3cc729e34964b47ce25d62
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.UTF-8); UI-Language: en-US
Calc: threaded
OS: Ubuntu 18.04

Steps to Reproduce:
1.Create formula in Writer using 'divides' syntax
2.Save as .docx
3.Close Writer
4.Reopen document

Actual Results:
'divides' syntax has been replaced with |, which does not render.

Expected Results:
'divides' should remain as the syntax.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.2.0.3
Build ID: 98c6a8a1c6c7b144ce3cc729e34964b47ce25d62
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.UTF-8); UI-Language: en-US
Calc: threaded
OS: Ubuntu 18.04

-- 
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 69254] Incorrect handling of font families (weight, style, stretches) on Mac

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69254

--- Comment #85 from Thomas Linard  ---
(In reply to giannis.sc from comment #84)
> I seem to be having the same problem on Ubuntu and on Fedora and I stumbled
> upon an interesting discovery.
> 
> My fonts are installed system-wide (/usr/share/fonts) and initially are all
> recognized by libreoffice. Once I change the default language though, in my
> case from English US to English UK the different font weight/families are
> not recognized properly. 
> 
> The same happens with libreoffice installed from the repositories and from
> flatpak.
> 
> I though you should know as it might help you determine the source of this
> bug

Hi, you're right, this isn't a Mac only bug: Linux bug is bug 98596.

-- 
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 123687] New: Scale Factor broken on some documents

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123687

Bug ID: 123687
   Summary: Scale Factor broken on some documents
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 149561
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149561=edit
Stripped down document to show problem with scaling factor

I've seen multiple examples of Calcs scale factor not working.

Steps to reproduce:
1. In Calc, Open the attached bugdoc
2. File->Print Preview
3. Slide "Scaling Factor" widget up or down

Expected Results:
1. Text enlarges or shrinks

Actual Results:
1. Nothing happens

AOO 4.1.6 correctly scales the document in and out

-- 
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 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529

Aron Budea  changed:

   What|Removed |Added

 Depends on||122767


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122767
[Bug 122767] Artifacts from comment popup with OpenGL enabled
-- 
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 73287] FORMATTING: Screen refresh bug with comment boxes

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73287

Aron Budea  changed:

   What|Removed |Added

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

-- 
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 122767] Artifacts from comment popup with OpenGL enabled

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122767

Aron Budea  changed:

   What|Removed |Added

Version|6.3.0.0.alpha0+ Master  |5.2.0.4 release
 Status|UNCONFIRMED |NEW
 Blocks||93529
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=73
   ||287
   Keywords||bibisectRequest, regression
 Ever confirmed|0   |1

--- Comment #6 from Aron Budea  ---
Fair enough, this is actually a regression since 5.2, confirming it.

Adding bibisectRequest, but it might be tough, there were a bunch of
OpenGL-related commits near release, and LO wasn't very stable sometimes.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=93529
[Bug 93529] [META] VCL/OpenGL rendering tracker bug for 5.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 42030] UI: Page Preview Bar scaling slider function unclear

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42030

Luke  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

-- 
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 42030] UI: Page Preview Bar scaling slider function unclear

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42030

Luke  changed:

   What|Removed |Added

   Assignee|kshitijpatha...@gmail.com   |libreoffice-b...@lists.free
   ||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-commits] core.git: slideshow/source

2019-02-24 Thread Libreoffice Gerrit user
 slideshow/source/engine/animationnodes/animationcommandnode.cxx |   22 
--
 slideshow/source/engine/animationnodes/animationcommandnode.hxx |2 
 2 files changed, 24 deletions(-)

New commits:
commit 7927bfcf46aaaee8a5ab4eeb10549436416cfc3a
Author: Mark Hung 
AuthorDate: Sat Feb 23 22:01:46 2019 +0800
Commit: Caolán McNamara 
CommitDate: Sun Feb 24 22:12:46 2019 +0100

slideshow: do not toggle pause when deactivate.

The command animation node schdules deactivation immediately after it is
activated, it turns what it might pause shortly then toggle the media to
play again, and it will not possible for user to insert many pause
commands to achieve toggling between play-pause-play-pause.

This commit will revert
1aa10fcb668f67f4313b7170a4090027e52164c5 tdf#121830 and the follwing
f820f6eb6036197bbb53e2d5e4bf4d5341ad280d tdf#121942

PowerPoint does not play the video file when the slide start. Instead it
insert a pause command in a interaction sequence that is triggered by
clicking the video file. I'm working on tdf#123557 to import start and
end condtions of a time node and tdf#123653 to allow triggering events
by clicking on the video. But there are still some more strange things
in the attachment of tdf#121830 that I have to investigate its start
condition and its media file format to understand whether it really
should play automatically ( or just a bogus file) and why it didn't
play.

Change-Id: I823afb4d1048471cebe43deb597f17a6e2611f06
Reviewed-on: https://gerrit.libreoffice.org/68245
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/slideshow/source/engine/animationnodes/animationcommandnode.cxx 
b/slideshow/source/engine/animationnodes/animationcommandnode.cxx
index 1b764b1c5a4a..e765f2a5a531 100644
--- a/slideshow/source/engine/animationnodes/animationcommandnode.cxx
+++ b/slideshow/source/engine/animationnodes/animationcommandnode.cxx
@@ -38,7 +38,6 @@ AnimationCommandNode::AnimationCommandNode( 
uno::Reference const& pParent,
  NodeContext const& rContext ) :
 BaseNode( xNode, pParent, rContext ),
-mbToggled(false),
 mpShape(),
 mxCommandNode( xNode, css::uno::UNO_QUERY_THROW )
 {
@@ -87,7 +86,6 @@ void AnimationCommandNode::activate_st()
 mpShape->pause();
 else
 mpShape->play();
-mbToggled = true;
 }
 break;
 }
@@ -111,26 +109,6 @@ void AnimationCommandNode::activate_st()
"AnimationCommandNode::deactivate" ) );
 }
 
-void AnimationCommandNode::deactivate_st( NodeState /*eDestState*/ )
-{
-switch( mxCommandNode->getCommand() ) {
-// the command toggles the pause status on a media object
-case EffectCommands::TOGGLEPAUSE:
-{
-if (mpShape && mbToggled)
-{
-if( mpShape->isPlaying() )
-mpShape->pause();
-else
-mpShape->play();
-mbToggled = false;
-}
-break;
-}
-
-}
-}
-
 bool AnimationCommandNode::hasPendingAnimation() const
 {
 return mxCommandNode->getCommand() == EffectCommands::STOPAUDIO || mpShape;
diff --git a/slideshow/source/engine/animationnodes/animationcommandnode.hxx 
b/slideshow/source/engine/animationnodes/animationcommandnode.hxx
index 1aacd1b6a071..675da7c3b0e8 100644
--- a/slideshow/source/engine/animationnodes/animationcommandnode.hxx
+++ b/slideshow/source/engine/animationnodes/animationcommandnode.hxx
@@ -46,11 +46,9 @@ protected:
 
 private:
 virtual void activate_st() override;
-virtual void deactivate_st( NodeState eDestState ) override;
 virtual bool hasPendingAnimation() const override;
 
 private:
-bool mbToggled;
 IExternalMediaShapeBaseSharedPtr mpShape;
 css::uno::Reference mxCommandNode;
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123618] FILESAVE DOCX, Shapes move out of their original places when saved in LO.

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123618

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #4 from Dieter Praas  ---
I can't confirm it with

Version: 6.3.0.0.alpha0+ (x64)
Build ID: f42554a1886ebe49170c25096dc3281b2c7bb1f4
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-08_22:37:30
Locale: en-US (de_DE); UI-Language: en-US
Calc: threaded

-- 
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 123620] FILESAVE | DOCX, Some shapes move after saving in LO and viewing in MSO

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123620

Dieter Praas  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de

--- Comment #4 from Dieter Praas  ---
I confirm it with

Version: 6.3.0.0.alpha0+ (x64)
Build ID: f42554a1886ebe49170c25096dc3281b2c7bb1f4
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-08_22:37:30
Locale: en-US (de_DE); UI-Language: en-US
Calc: threaded

-- 
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 123686] New: Impossible to install LibreOffice

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123686

Bug ID: 123686
   Summary: Impossible to install LibreOffice
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pascal.fourn...@gmail.com

Description:
I wish to re-install LibreOffice 6.1.5.2 on my PC after a system crash but each
time I have a meesage : Error 1714. The previous version of LibreOffice 6.1.5.2
could not be removed Contact your technical support service;

May you help me ? Thank you

Steps to Reproduce:
1.Download LibreOffice 6 1 5 2
2.Click on .msi to install
3.Removal of applications
4.Message
4. End

Actual Results:
Impossible to install

Expected Results:
Same thing 5 times


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
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 123651] FILEOPEN DOCX Shape move out of its original place

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123651

Dieter Praas  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #4 from Dieter Praas  ---
(In reply to raal from comment #3)
> Confirm with Version: 6.3.0.0.alpha0+

=> NEW

-- 
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 123685] New: Problem with updating chart data in Calc

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123685

Bug ID: 123685
   Summary: Problem with updating chart data in Calc
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: micheldesmar...@hotmail.com

Description:
Hello,

When I want to add data to a chart, I go to "Data Ranges" to redefine it and
include new data. Nothing happens and the chart remains unchanged. It's curious
because in the past with older versions of Calc, I very often did this
manipulation and it worked perfectly well. 

I am using version 6.2.0.3 (64 bits).

Thank you for your attention.

Michel Desmarest

Steps to Reproduce:
1.Edit chart
2.Click on Data range
3.Change column or row (to extend the data range)
4.Exit Edit

Actual Results:
Nothing 




Expected Results:
The graph should be modified to take the new data range into account


Reproducible: Always


User Profile Reset: No



Additional Info:
It worked perfectly well with older versions of Calc

-- 
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 100239] UI Blinking thumbnails of linked images

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100239

Buovjaga  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #15 from Buovjaga  ---
lj308: as you still saw the problem as recently as 5.4, I am pretty confident
we can close this. Thanks for following up.

-- 
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 104238] [META] Impress image bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104238
Bug 104238 depends on bug 100239, which changed state.

Bug 100239 Summary: UI Blinking thumbnails of linked images
https://bugs.documentfoundation.org/show_bug.cgi?id=100239

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
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 120736] Automatic update of external links is disabled even though file is in trusted location and setting for opening is "Always" (see comment 13)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120736

Buovjaga  changed:

   What|Removed |Added

 OS|Linux (All) |All
   Keywords||bibisected, bisected,
   ||regression
 CC||sberg...@redhat.com
Version|6.1.2.1 release |5.1.0.3 release
Summary|Automatic update of |Automatic update of
   |external links is disabled  |external links is disabled
   |even though file is in  |even though file is in
   |trusted location and|trusted location and
   |setting for opening is  |setting for opening is
   |"Always" (see comment 3)|"Always" (see comment 13)

--- Comment #15 from Buovjaga  ---
Bibisected the prompting even when dir in Trusted locations and updating set to
"Always" with win32-5.1 repo to
https://gerrit.libreoffice.org/plugins/gitiles/core/+/77cc71476bae2b3655102e2c29d36af40a393201%5E!/

LinkUpdateMode is a global setting

Adding Cc: to Stephan Bergmann

Note to Stephan: the talk of crashing, sharing of spreadsheet in the beginning
of this report is a red herring. A simple test case is having a target sheet
with named range and the file that links to the target. Then using the steps in
comment 13.

-- 
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 108253] [META] Calc cell formula bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108253

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||123000


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123000
[Bug 123000] Regular expression match function, please?
-- 
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 123000] Regular expression match function, please?

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123000

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108253


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108253
[Bug 108253] [META] Calc cell formula bugs and enhancements
-- 
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 100239] UI Blinking thumbnails of linked images

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100239

--- Comment #14 from lj...@pobox.com ---
I see the QA instructions say I should have changed the status to
RESOLVED-WORKSFORME, but I didn't. Although it works for me, I don't know if it
works for anyone else, or in particular for the bug author.

-- 
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 122718] Sidebar Functions panel misses search like Function Wizard

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122718

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||103441


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103441
[Bug 103441] [META] Functions deck/tab of the sidebar
-- 
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 103441] [META] Functions deck/tab of the sidebar

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103441

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||122718


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122718
[Bug 122718] Sidebar Functions panel misses search like Function Wizard
-- 
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 121977] Function for reversing string order

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121977

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 109352] [META] Sum function bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109352

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||122025


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122025
[Bug 122025] Cell format change back cause sum function problem.
-- 
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 122025] Cell format change back cause sum function problem.

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122025

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||109352


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109352
[Bug 109352] [META] Sum function bugs and enhancements
-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||121977


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121977
[Bug 121977] Function for reversing string order
-- 
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 100239] UI Blinking thumbnails of linked images

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100239

--- Comment #13 from lj...@pobox.com ---
I did see the problem in Draw 5.4.6, when the previous comment from the QA team
was posted. But now I am now using Draw 6.1.5 and the problem seems to have
been completely fixed. No evidence of blinking or vanishing thumbnails with
linked images.

-- 
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 121422] The CELL function does not change the result after changing the name of the sheet.

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121422

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||109324


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109324
[Bug 109324] [META] Calculate bugs and enhancements
-- 
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 109324] [META] Calculate bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109324

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||121422


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121422
[Bug 121422] The CELL function does not change the result after changing the
name of the sheet.
-- 
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 121277] function PROCV (vlookup?)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121277

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

Summary|function PROCV  |function PROCV (vlookup?)

-- 
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 109329] [META] VLookup function bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109329

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||121277


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121277
[Bug 121277] function PROCV
-- 
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 121277] function PROCV

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121277

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||109329


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109329
[Bug 109329] [META] VLookup function bugs and enhancements
-- 
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 121105] the current() function is confused if used inside or()

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121105

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||121105


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121105
[Bug 121105] the current() function is confused if used inside or()
-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||120887


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120887
[Bug 120887] PV function returns wrong answer
-- 
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 120887] PV function returns wrong answer

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120887

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 120577] SUM and other functions taking NumberSequence ignore Text type cells, indicator about not matching cell content could enhance user experience.

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120577

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108019


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108019
[Bug 108019] [META] Calc UX bugs and enhancements
-- 
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 108019] [META] Calc UX bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108019

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||120577


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120577
[Bug 120577] SUM and other functions taking NumberSequence ignore Text type
cells, indicator about not matching cell content could enhance user experience.
-- 
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 119999] Request Calc Function: A vlookup/sumif type of function that will access the Libreoffice base table or query

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=11

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||11


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=11
[Bug 11] Request Calc Function: A vlookup/sumif type of function that will
access the Libreoffice base table or query
-- 
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

Re: Extending subsequent tests with dogtail tests?

2019-02-24 Thread Samuel Thibault
Hello,

Markus Mohrhard, le lun. 25 févr. 2019 00:34:33 +0800, a ecrit:
> On Sat, Feb 23, 2019 at 6:24 PM Samuel Thibault <[1]sthiba...@hypra.fr> wrote:
> 
> > That said, we could as well make tests work at both layers. Run them
> > along uitests, thus very frequently, and run them periodically through
> > the accessibility layer on a system which has it.
> 
> I think you most likely want to test them independently if possible
> as I think you'll discover that combining them will lead to hard to diagnose
> problems.

That's why I mentioned trying with both layers.

> Additionally, the target of any test framework has to be that it
> minimizes the number of random test failures and requires as little adoption
> for unrelated code changes as possible.

Sure. That's why we're proposing to follow the blind user testcases,
which we usually don't want to change without some thinking.

> I noticed after quickly looking at your proposed tests is that you use UI
> strings in your tests which I think you want to avoid as much as possible.
> There are several problems with UI strings that make them a bad property 
> during
> testing: they change often, often not even by developers and are localized.
> Especially the second point means that your tests suddenly only work in en-US
> which surely limits a bit the usefulness of the tests. Even more if you plan 
> to
> generate test cases automatically as it means that the tests can only be
> generated with an en-US locale.

Sure, both testing and generating testcases needs to be done in the C
locale.

The fact that even the C UI strings may change is a concern indeed. We
however don't really have another way to identify widgets, do we? (we
don't want to identify them structurally, that'd be even less stable)

That was actually mentioned in

https://gitlab.gnome.org/GNOME/atk/issues/4

we'd need stable identifiers for the expected fields.

> On a slightly related note, please make sure that you are developing against
> python 3. I did not check if you are actually using any pure python2 features
> but at least "#!/usr/bin/python" will get you a python 2 interpreter on most
> systems.

Yes, that's on purpose because Debian doesn't have the python3 package
for dogtail yet :)

Samuel
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 119057] ADDRESS function >> syntax of formula is changed after saving, if "ABS" argument is empty (hand input)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119057

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||118973


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118973
[Bug 118973] Calc, HLOOKUP function doesn't report correct value in column 20
of 20 columns
-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||119057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119057
[Bug 119057] ADDRESS function >> syntax of formula is changed after saving, if
"ABS" argument is empty (hand input)
-- 
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 118973] Calc, HLOOKUP function doesn't report correct value in column 20 of 20 columns

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118973

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||118735


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118735
[Bug 118735] Opening a spreadsheet with saved values of URI functions shows
#VALUE! instead of cached values (see comment 7)
-- 
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 123663] Impress will not save a loop

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123663

--- Comment #5 from Elliott  ---
If I save the old files in .odp format then the loop function will save.

Thank you for all this, you have helped me greatly.

-- 
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 77116] UI: The input line (single line modes) doesn't show any text in case of a multi-line cell with an empty first line

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77116

Cor Nouws  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
Version|4.2.2.1 release |3.5.0 release
Summary|UI: Show some text in case  |UI: The input line (single
   |of a multi-line cell when   |line modes) doesn't show
   |the first line is empty.|any text in case of a
   ||multi-line cell with an
   ||empty first line

--- Comment #9 from Cor Nouws  ---
still in 63 master.

-- 
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-ux-advise] [Bug 77116] UI: The input line (single line modes) doesn't show any text in case of a multi-line cell with an empty first line

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77116

Cor Nouws  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
Version|4.2.2.1 release |3.5.0 release
Summary|UI: Show some text in case  |UI: The input line (single
   |of a multi-line cell when   |line modes) doesn't show
   |the first line is empty.|any text in case of a
   ||multi-line cell with an
   ||empty first line

--- Comment #9 from Cor Nouws  ---
still in 63 master.

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

[Libreoffice-bugs] [Bug 118735] Opening a spreadsheet with saved values of URI functions shows #VALUE! instead of cached values (see comment 7)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118735

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 123663] Impress will not save a loop

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123663

--- Comment #4 from Elliott  ---
I can save it on new files - success!

I still cannot save it on old files though.

-- 
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 116739] The functions toolbar does not get disabled when Manage Cells dialog is opened

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116739

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||113359


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113359
[Bug 113359] [META] Calc toolbar bugs and enhancements
-- 
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 113359] [META] Calc toolbar bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113359

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||116739


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116739
[Bug 116739] The functions toolbar does not get disabled when Manage Cells
dialog is opened
-- 
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 102161] [i10n] Function parameter localization has low visibility to translators

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102161

Buovjaga  changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 123663] Impress will not save a loop

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123663

--- Comment #3 from Julien Nabet  ---
Before testing 6.2, just to be sure, do you reproduce this with a brand new
file or only with specific files?

-- 
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 108364] [META] Table/Row/Column/Cell management function bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108364

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||112641


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112641
[Bug 112641] freeze rows/columns functions incorrect or unexpected when frozen
rows/columns don't fit in Window
-- 
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 112641] freeze rows/columns functions incorrect or unexpected when frozen rows/columns don't fit in Window

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112641

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108364


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108364
[Bug 108364] [META] Table/Row/Column/Cell management function bugs and
enhancements
-- 
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 123663] Impress will not save a loop

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123663

--- Comment #2 from Elliott  ---
I have updated as you suggest to:
Version: 6.1.5.2 (x64)
Build ID: 90f8dcf33c87b3705e78202e3df5142b201bd805
CPU threads: 4; OS: Windows 10.0; UI render: default; 
Locale: en-CA (en_CA); Calc: CL

I still cannot save the function from session to session.

I see that there is a 6.2 version that I will try next.

-- 
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 123683] Greek letter lambda called "lamda" in special character dialog

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123683

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
I'm not an expert but would say it's not a bug, see
https://en.wikipedia.org/wiki/Lambda and this part:
"
Unicode uses the spelling "lamda" in character names, instead of "lambda", due
to "preferences expressed by the Greek National Body"
"

-- 
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 108827] [META] Calc functions bugs and enhancements

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||98844


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98844
[Bug 98844] SUM function does not take into account precision as shown for
ranges with numbers only (comment #7).
-- 
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 98844] SUM function does not take into account precision as shown for ranges with numbers only (comment #7).

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98844

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
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 123143] [Colibre] Missed Number Format:Currency icon on Table toolbar in Writer

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123143

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

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

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
ok, there is the Currency icon in

Version: 6.3.0.0.alpha0+ (x64)
Build ID: 47c498417248444cab4e8f597ddeec4e0d585a71
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-21_08:39:21
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded

let's close this as WFM

-- 
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 117497] [META] Colibre icons

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
Bug 117497 depends on bug 123143, which changed state.

Bug 123143 Summary: [Colibre] Missed Number Format:Currency icon on Table 
toolbar in Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=123143

   What|Removed |Added

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

-- 
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-commits] core.git: Branch 'libreoffice-6-2-1' - translations

2019-02-24 Thread Libreoffice Gerrit user
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 52f533dece9bf69d0f661d6b1085ab66536275f5
Author: Christian Lohmaier 
AuthorDate: Sun Feb 24 20:20:57 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Sun Feb 24 20:32:02 2019 +0100

Update git submodules

* Update translations from branch 'libreoffice-6-2-1'
  - update translations for 6.2.1 rc2

and force-fix errors using pocheck

Change-Id: I52ae3cc0648a2dfbd79a2354e772ad10f7c8fcd8
(cherry picked from commit 5df3fdca39449cb8d5b2405e72c44cb1cfa313bd)

diff --git a/translations b/translations
index 71a5dbdad7b5..22640327f725 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 71a5dbdad7b593780080fc4621dccd15603bdf0f
+Subproject commit 22640327f725963a66ee815e62c3d2cddc14dae7
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - translations

2019-02-24 Thread Libreoffice Gerrit user
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8cc0bf83fc3c182e76a0aab160aaba13f4c42afd
Author: Christian Lohmaier 
AuthorDate: Sun Feb 24 20:20:57 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Sun Feb 24 20:28:54 2019 +0100

Update git submodules

* Update translations from branch 'libreoffice-6-2'
  - update translations for 6.2.1 rc2

and force-fix errors using pocheck

Change-Id: I52ae3cc0648a2dfbd79a2354e772ad10f7c8fcd8

diff --git a/translations b/translations
index 8a6968bdab66..5df3fdca3944 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 8a6968bdab66c790fee6ec6d7d949473830bdd56
+Subproject commit 5df3fdca39449cb8d5b2405e72c44cb1cfa313bd
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123591] base(firebird): Incorrect Posting of Numeric Data

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123591

--- Comment #11 from ribotb  ---
By ordering the columns of the source table, the copy works.

And I confirm: Base/Firebird doesn't recognize the decimalseparator from the
Calc import also in v6.2.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 123541] Image disappearing

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123541

--- Comment #6 from Buovjaga  ---
No repro. Can you repro with a 64-bit build?

Version: 6.3.0.0.alpha0+ (x64)
Build ID: a798926550ab3ea8613f28a7be2672ebe9e7dfbe
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-24_04:50:25
Locale: fi-FI (fi_FI); UI-Language: en-US
Calc: threaded

-- 
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 89060] Lines move when focusing into text box (see comment 12)

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89060

Buovjaga  changed:

   What|Removed |Added

   Priority|medium  |low
Summary|Editing:  Text spacing  |Lines move when focusing
   |changes when click in   |into text box (see comment
   |textbox |12)

--- Comment #13 from Buovjaga  ---
On Windows, 6.2.0, both lines move slightly down upon focus.
With a master build, only the top line moves - upwards!

In older versions we might see letters like i and e moving horizontally, but
that behaviour is gone.

Version: 6.3.0.0.alpha0+ (x64)
Build ID: a798926550ab3ea8613f28a7be2672ebe9e7dfbe
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-24_04:50:25
Locale: fi-FI (fi_FI); UI-Language: en-US
Calc: threaded

-- 
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 102005] START CENTER: Pressing F6 stops at thumbnail list view

2019-02-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102005

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #10 from V Stuart Foote  ---
Verified Fixed on Windows 10 Home 64-bit en-US (1809) with
Version: 6.3.0.0.alpha0+ (x64)
Build ID: a798926550ab3ea8613f28a7be2672ebe9e7dfbe
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-24_04:50:25
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

No keyboard navigation issues when changing from document thumbnail views to
the template manager views. F6 - F10 -  and cursors are now consistent in
both StartCenter modes.

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

  1   2   >