[Libreoffice-bugs] [Bug 96982] New: libreoffice icons: feature request

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

Bug ID: 96982
   Summary: libreoffice icons: feature request
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bnrj.ru...@live.com

Hi,

I will really like to see LO more integrated with my DE. 
May I request the designers and developers to consider icon themes from
standard place, e.g. /usr/share/icons or ~/.icons rather then LO's own icon
set?

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


[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #23 from Commit Notification 
 ---
Ras-al-Ghul committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=269f953aaa46d7dce26d061ce487d2f76a16a34e

tdf#96888 Kill internal vcl dog-tags ...

It will be available in 5.2.0.

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

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

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


[Libreoffice-commits] core.git: include/vcl vcl/source

2016-01-09 Thread Ras-al-Ghul
 include/vcl/menu.hxx   |2 +-
 vcl/source/window/menu.cxx |   21 ++---
 2 files changed, 7 insertions(+), 16 deletions(-)

New commits:
commit 31bc9a228ed02dfa082e3a59c20b0ce106d5c75c
Author: Ras-al-Ghul 
Date:   Sat Jan 9 03:09:49 2016 +0530

tdf#96888 Kill internal vcl dog-tags ...

This is a cleanup to https://gerrit.libreoffice.org/#/c/21233/

Change-Id: I731b9cb8e64fb07e8d0a6d89e4f420e2e4570a8e
Reviewed-on: https://gerrit.libreoffice.org/21279
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx
index ade703b..d5eec40 100644
--- a/include/vcl/menu.hxx
+++ b/include/vcl/menu.hxx
@@ -519,7 +519,7 @@ private:
 SAL_DLLPRIVATE MenuFloatingWindow * ImplGetFloatingWindow() const;
 
 protected:
-SAL_DLLPRIVATE sal_uInt16 ImplExecute( vcl::Window* pWindow, const 
Rectangle& rRect, FloatWinPopupFlags nPopupFlags, Menu* pStaredFrom, bool 
bPreSelectFirst );
+SAL_DLLPRIVATE sal_uInt16 ImplExecute( const VclPtr& xWindow, 
const Rectangle& rRect, FloatWinPopupFlags nPopupFlags, Menu* pStaredFrom, bool 
bPreSelectFirst );
 SAL_DLLPRIVATE long ImplCalcHeight( sal_uInt16 nEntries ) const;
 SAL_DLLPRIVATE sal_uInt16 ImplCalcVisEntries( long nMaxHeight, sal_uInt16 
nStartEntry = 0, sal_uInt16* pLastVisible = nullptr ) const;
 
diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 0b866be..29fd6b9 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -2928,7 +2928,7 @@ sal_uInt16 PopupMenu::Execute( vcl::Window* pExecWindow, 
const Rectangle& rRect,
 return ImplExecute( pExecWindow, rRect, nPopupModeFlags, nullptr, false );
 }
 
-sal_uInt16 PopupMenu::ImplExecute( vcl::Window* pW, const Rectangle& rRect, 
FloatWinPopupFlags nPopupModeFlags, Menu* pSFrom, bool bPreSelectFirst )
+sal_uInt16 PopupMenu::ImplExecute( const VclPtr& pW, const 
Rectangle& rRect, FloatWinPopupFlags nPopupModeFlags, Menu* pSFrom, bool 
bPreSelectFirst )
 {
 if ( !pSFrom && ( PopupMenu::IsInExecute() || !GetItemCount() ) )
 return 0;
@@ -2972,18 +2972,13 @@ sal_uInt16 PopupMenu::ImplExecute( vcl::Window* pW, 
const Rectangle& rRect, Floa
 // could be useful during debugging.
 // nPopupModeFlags |= FloatWinPopupFlags::NoFocusClose;
 
-ImplDelData aDelData;
-pW->ImplAddDel(  );
-
 bInCallback = true; // set it here, if Activate overridden
 Activate();
 bInCallback = false;
 
-if ( aDelData.IsDead() )
+if ( pW->IsDisposed() )
 return 0;   // Error
 
-pW->ImplRemoveDel(  );
-
 if ( bCanceled || bKilled )
 return 0;
 
@@ -3135,20 +3130,16 @@ sal_uInt16 PopupMenu::ImplExecute( vcl::Window* pW, 
const Rectangle& rRect, Floa
 }
 if ( bRealExecute )
 {
-pWin->ImplAddDel(  );
-
-ImplDelData aModalWinDel;
-pW->ImplAddDel(  );
 pW->ImplIncModalCount();
 
 pWin->Execute();
 
-DBG_ASSERT( ! aModalWinDel.IsDead(), "window for popup died, modal 
count incorrect !" );
-if( ! aModalWinDel.IsDead() )
+DBG_ASSERT( ! pW->IsDisposed(), "window for popup died, modal count 
incorrect !" );
+if( ! pW->IsDisposed() )
 pW->ImplDecModalCount();
 
-if ( !aDelData.IsDead() )
-pWin->ImplRemoveDel(  );
+if ( !pWin->IsDisposed() )
+return 0;
 else
 return 0;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-09 Thread Ras-al-Ghul
 vcl/source/control/button.cxx |   33 -
 1 file changed, 12 insertions(+), 21 deletions(-)

New commits:
commit 269f953aaa46d7dce26d061ce487d2f76a16a34e
Author: Ras-al-Ghul 
Date:   Sat Jan 9 02:57:47 2016 +0530

tdf#96888 Kill internal vcl dog-tags ...

This is a cleanup to https://gerrit.libreoffice.org/#/c/21230/

Change-Id: I3999c8af1b906105a448e61353a839237aec7098
Reviewed-on: https://gerrit.libreoffice.org/21276
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 

diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx
index d831794..fd0beb4 100644
--- a/vcl/source/control/button.cxx
+++ b/vcl/source/control/button.cxx
@@ -2272,15 +2272,12 @@ void RadioButton::ImplUncheckAllOther()
 // iterate over radio button group and checked buttons
 for (auto aI = aGroup.begin(), aEnd = aGroup.end(); aI != aEnd; ++aI)
 {
-RadioButton *pWindow = *aI;
+VclPtr pWindow = *aI;
 if ( pWindow->IsChecked() )
 {
-ImplDelData aDelData;
-pWindow->ImplAddDel(  );
 pWindow->SetState( false );
-if ( aDelData.IsDead() )
+if ( pWindow->IsDisposed() )
 return;
-pWindow->ImplRemoveDel(  );
 }
 
 // not inside if clause to always remove wrongly set WB_TABSTOPS
@@ -2295,24 +2292,22 @@ void RadioButton::ImplCallClick( bool bGrabFocus, 
GetFocusFlags nFocusFlags )
 mpWindowImpl->mnStyle |= WB_TABSTOP;
 Invalidate();
 Update();
-ImplDelData aDelData;
-ImplAddDel(  );
+VclPtr xWindow = this;
 if ( mbRadioCheck )
 ImplUncheckAllOther();
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
 if ( bGrabFocus )
 ImplGrabFocus( nFocusFlags );
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
 if ( mbStateChanged )
 Toggle();
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
 Click();
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
-ImplRemoveDel(  );
 mbStateChanged = false;
 }
 
@@ -2737,17 +2732,15 @@ void RadioButton::Check( bool bCheck )
 if ( mbChecked != bCheck )
 {
 mbChecked = bCheck;
-ImplDelData aDelData;
-ImplAddDel(  );
+VclPtr xWindow = this;
 CompatStateChanged( StateChangedType::State );
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
 if ( bCheck && mbRadioCheck )
 ImplUncheckAllOther();
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
 Toggle();
-ImplRemoveDel(  );
 }
 }
 
@@ -3231,17 +3224,15 @@ void CheckBox::ImplCheck()
 eNewState = TRISTATE_FALSE;
 meState = eNewState;
 
-ImplDelData aDelData;
-ImplAddDel(  );
+VclPtr xWindow = this;
 if( (GetStyle() & WB_EARLYTOGGLE) )
 Toggle();
 Invalidate();
 Update();
 if( ! (GetStyle() & WB_EARLYTOGGLE) )
 Toggle();
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
-ImplRemoveDel(  );
 Click();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - formula/source include/formula reportdesign/source sc/inc sc/source

2016-01-09 Thread Eike Rathke
 formula/source/ui/dlg/FormulaHelper.cxx|1 +
 formula/source/ui/dlg/formula.cxx  |   13 +++--
 formula/source/ui/dlg/funcpage.cxx |   14 ++
 include/formula/IFunctionDescription.hxx   |1 +
 include/formula/formdata.hxx   |8 
 reportdesign/source/ui/inc/FunctionHelper.hxx  |1 +
 reportdesign/source/ui/misc/FunctionHelper.cxx |5 +
 sc/inc/funcdesc.hxx|8 
 sc/source/core/data/funcdesc.cxx   |   15 +--
 sc/source/ui/src/scfuncs.src   |   16 +++-
 10 files changed, 65 insertions(+), 17 deletions(-)

New commits:
commit f6f73d2e40712dadf69cd73a34d006988669978c
Author: Eike Rathke 
Date:   Fri Jan 8 23:12:32 2016 +0100

Function Wizard: exclude functions with hidden flag from lists

Change-Id: Ia209bb44cef5969e5c9cd360aa5725708d6bdec5

diff --git a/formula/source/ui/dlg/funcpage.cxx 
b/formula/source/ui/dlg/funcpage.cxx
index 7b83298f..d629ca3 100644
--- a/formula/source/ui/dlg/funcpage.cxx
+++ b/formula/source/ui/dlg/funcpage.cxx
@@ -108,8 +108,9 @@ void FuncPage::impl_addFunctions(const IFunctionCategory* 
_pCategory)
 for(sal_uInt32 i = 0 ; i < nCount; ++i)
 {
 TFunctionDesc pDesc(_pCategory->getFunction(i));
-m_pLbFunction->SetEntryData(
-m_pLbFunction->InsertEntry(pDesc->getFunctionName() 
),const_cast(pDesc) );
+if (!pDesc->isHidden())
+m_pLbFunction->SetEntryData(
+m_pLbFunction->InsertEntry(pDesc->getFunctionName() 
),const_cast(pDesc) );
 }
 }
 
commit 8aee44c94fd2abdb7f1566ad237da4bfdfc011fa
Author: Eike Rathke 
Date:   Fri Jan 8 22:08:40 2016 +0100

Function Wizard: don't overwrite an unlisted function

* in a spreadsheet cell enter =LOG(foobar(SIN(1)))
* invoke Function Wizard on that cell (Ctrl+F2)
  LOG(foobar(SIN(1))) is marked in Formula edit field
* activate Functions page
  LOG(foobar(SIN(1))) is marked in Formula edit field
  Function LOG is selected
* click Next button
  foobar(SIN(1)) is marked in Formula edit field
  Function ABS is selected
* click Next button
  foobar(SIN(1)) is overwritten with ABS( )
* only Cancel solves the problem

foobar() could be any user defined or macro function that have no
function description in the Formula Wizard.

Change-Id: I1cb69a9e38c0b8f251d783bd0f67b4b24ade50d0

diff --git a/formula/source/ui/dlg/formula.cxx 
b/formula/source/ui/dlg/formula.cxx
index 0d0a646..1cf839d 100644
--- a/formula/source/ui/dlg/formula.cxx
+++ b/formula/source/ui/dlg/formula.cxx
@@ -1041,7 +1041,16 @@ IMPL_LINK_TYPED( FormulaDlg_Impl, BtnHdl, Button*, pBtn, 
void )
 }
 else if ( pBtn == m_pBtnForward )
 {
-const IFunctionDescription* pDesc =pFuncPage->GetFuncDesc( 
pFuncPage->GetFunction() );
+const IFunctionDescription* pDesc;
+sal_Int32 nSelFunc = pFuncPage->GetFunction();
+if (nSelFunc != LISTBOX_ENTRY_NOTFOUND)
+pDesc = pFuncPage->GetFuncDesc( nSelFunc );
+else
+{
+// Do not overwrite the selected formula expression, just edit the
+// unlisted function.
+pFuncDesc = pDesc = nullptr;
+}
 
 if(pDesc==pFuncDesc || !pFuncPage->IsVisible())
 EditNextFunc( true );
@@ -1963,7 +1972,7 @@ void FormEditData::Reset()
 nMode = 0;
 nFStart = 0;
 nCatSel = 1;//! oder 0 (zuletzt benutzte)
-nFuncSel = 0;
+nFuncSel = LISTBOX_ENTRY_NOTFOUND;
 nOffset = 0;
 nEdFocus = 0;
 bMatrix = false;
diff --git a/formula/source/ui/dlg/funcpage.cxx 
b/formula/source/ui/dlg/funcpage.cxx
index 42a2b35..7b83298f 100644
--- a/formula/source/ui/dlg/funcpage.cxx
+++ b/formula/source/ui/dlg/funcpage.cxx
@@ -155,7 +155,9 @@ void FuncPage::UpdateFunctionList()
 
 
 m_pLbFunction->SetUpdateMode( true );
-m_pLbFunction->SelectEntryPos(0);
+// Ensure no function is selected so the Next button doesn't overwrite a
+// function that is not in the list with an arbitrary selected one.
+m_pLbFunction->SetNoSelection();
 
 if(IsVisible()) SelHdl(*m_pLbFunction);
 }
@@ -198,7 +200,10 @@ sal_Int32 FuncPage::GetFuncPos(const IFunctionDescription* 
_pDesc)
 
 void FuncPage::SetFunction(sal_Int32 nFunc)
 {
-m_pLbFunction->SelectEntryPos(nFunc);
+if (nFunc == LISTBOX_ENTRY_NOTFOUND)
+m_pLbFunction->SetNoSelection();
+else
+m_pLbFunction->SelectEntryPos(nFunc);
 }
 
 void FuncPage::SetFocus()
diff --git a/include/formula/formdata.hxx b/include/formula/formdata.hxx
index 30c0ce5..ecd3dd1 100644
--- a/include/formula/formdata.hxx
+++ b/include/formula/formdata.hxx
@@ -37,8 +37,8 @@ public:
 
 inline sal_uInt16   GetMode() const { return nMode; }
 inline sal_Int32GetFStart() const   { return 

[Libreoffice-bugs] [Bug 96912] Newline in Cell (ctrl+enter) is ignored by Excel if content of the next line was pasted in Libre Office

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

raal  changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from raal  ---
I can confirm with Version: 5.2.0.0.alpha0+
Build ID: c1258abe50f1508ea0f628ff963bc1914ab86b67
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-01-02_01:43:32


works correct in Version: 4.2.0.0.alpha1+
Build ID: fc8f44e82de4ebdd50ac5fbb9207cd1a59a927e3 -> regression

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


[Libreoffice-bugs] [Bug 96979] After upgrading to version 5.04, / key crashed through remote session using TeamViewer. Returning to version 5.03 the error no longer occurs and / functions normally

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure  ---
Please, describe step by step how to reproduce this problem.

Best regards. JBF

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


[Libreoffice-commits] online.git: loolwsd/LOOLKit.cpp

2016-01-09 Thread Henry Castro
 loolwsd/LOOLKit.cpp |   54 
 1 file changed, 21 insertions(+), 33 deletions(-)

New commits:
commit d20e9399fc194143d71383d4bfefb5f3eef2a947
Author: Henry Castro 
Date:   Sat Jan 9 07:27:57 2016 -0400

loolwsd: revert, refactor lokit Document

I did not consider shared document case.

diff --git a/loolwsd/LOOLKit.cpp b/loolwsd/LOOLKit.cpp
index 32c8f4d..ff7c3c3 100644
--- a/loolwsd/LOOLKit.cpp
+++ b/loolwsd/LOOLKit.cpp
@@ -470,13 +470,14 @@ private:
 class Document
 {
 public:
-Document(LibreOfficeKit *loKit, const std::string& jailId)
+Document(LibreOfficeKit *loKit, const std::string& jailId,
+ const std::string& url)
   : _loKit(loKit),
 _jailId(jailId),
-_url(""),
+_url(url),
 _loKitDocument(nullptr)
 {
-Log::info("Document ctor on child [" + jailId + "].");
+Log::info("Document ctor for url [" + url + "] on child [" + jailId + 
"].");
 }
 
 ~Document()
@@ -505,10 +506,9 @@ public:
 }
 }
 
-void createSession(const std::string& sessionId, const std::string& url)
+void createSession(const std::string& sessionId)
 {
 const auto& aItem = _connections.find(sessionId);
-_url = url;
 
 if (aItem != _connections.end())
 {
@@ -579,19 +579,13 @@ public:
 return _connections.size() > 0;
 }
 
-const std::string& getURL()
-{
-return _url;
-}
-
 private:
 
 void onLoad(LibreOfficeKitDocument *loKitDocument, const int viewId)
 {
 Log::info("Document [" + _url + "] loaded as view #" + 
std::to_string(viewId) + ".");
-// TODO. destroy lokit document when changed URL
-// if (_loKitDocument != nullptr)
-//assert(_loKitDocument == loKitDocument);
+if (_loKitDocument != nullptr)
+assert(_loKitDocument == loKitDocument);
 _loKitDocument = loKitDocument;
 }
 
@@ -604,7 +598,7 @@ private:
 
 LibreOfficeKit *_loKit;
 const std::string _jailId;
-std::string _url;
+const std::string _url;
 
 LibreOfficeKitDocument *_loKitDocument;
 
@@ -627,6 +621,8 @@ void lokit_main(const std::string , const 
std::string& jailId, const s
 assert(!jailId.empty());
 assert(!loSubPath.empty());
 
+std::map _documents;
+
 static const std::string process_name = "loolkit";
 #ifdef __linux
 if (prctl(PR_SET_NAME, reinterpret_cast(process_name.c_str()), 0, 0, 0) != 0)
@@ -650,9 +646,6 @@ void lokit_main(const std::string , const 
std::string& jailId, const s
 exit(-1);
 }
 
-// Singlenton instance
-std::shared_ptr 
pDocument(std::make_shared(loKit.get(), jailId));
-
 try
 {
 int writerBroker;
@@ -729,16 +722,14 @@ void lokit_main(const std::string , const 
std::string& jailId, const s
 
 if (tokens[0] == "search")
 {
-// remove unloaded documents
-pDocument->purgeSessions();
-
-if (!pDocument->hasConnections())
+if (_documents.empty())
 {
 aResponse += "empty \r\n";
 }
 else
 {
-aResponse += (pDocument->getURL() == tokens[1] ? 
"ok \r\n" : "no \r\n");
+const auto& it = _documents.find(tokens[1]);
+aResponse += (it != _documents.end() ? "ok \r\n" : 
"no \r\n");
 }
 }
 else if (tokens[0] == "thread")
@@ -746,16 +737,13 @@ void lokit_main(const std::string , const 
std::string& jailId, const s
 const std::string& sessionId = tokens[1];
 const std::string& url = tokens[2];
 
-if (!pDocument->hasConnections() || 
pDocument->getURL() == url)
-{
-Log::debug("Thread request for session [" + 
sessionId + "], url: [" + url + "].");
-pDocument->createSession(sessionId, url);
-aResponse += "ok \r\n";
-}
-else
-{
-aResponse += "no \r\n";
-}
+Log::debug("Thread request for session [" + sessionId 
+ "], url: [" + url + "].");
+auto it = _documents.lower_bound(url);
+if (it == _documents.end())
+it = _documents.emplace_hint(it, url, 
std::make_shared(loKit.get(), jailId, url));
+
+it->second->createSession(sessionId);
+aResponse += "ok \r\n";
 }
 

[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #22 from Michael Meeks  ---
Hi Dipankar:

> https://gerrit.libreoffice.org/21280 is a cleanup of
> https://gerrit.libreoffice.org/21215

Ah - this is a bit of a pain to manage =) Luckily gerrit has a feature to make
this very, very easy - if you use it.

If you ensure that your new commit has the same 'Change-Id:' entry in the
commit message - then gerrit will just update the old patch, rather than
creating a new gerrit entry.

That -really- helps - it keeps the old comments together with the new patch,
and reduces the thrash of gerrit and so on.

Please can you ensure that new patches retain the old Change-IDs ? I appreciate
it's somewhat annoying having all these small patches ;-) but good practice for
dealing with eg. 'git rebase -i' which is a powerful tool for squashing changes
into patches =)

Thanks !

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore (with openGL activated)

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

--- Comment #18 from Michael Meeks  ---
Thanks for filing; I implemented ::Invert and now we get a solid (inverted)
tracking rectangle - I need to implement SAL_INVERT_TRACKFRAME it seems to get
this working properly; essentially a dashed empty rectangle =)

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


[Libreoffice-bugs] [Bug 55066] FILEOPEN: flaws in importing 123 files

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

--- Comment #15 from Shubham Tibra  ---
I'd like to work on this bug, is it still open to work on.

But I'll need some help. I am new here.

I didn't understand how the import code works and how it uses the file format?

Can someone help me?

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


[Libreoffice-bugs] [Bug 96550] change color of icons on toolbar in Writer when activated OpenGL

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

Michael Meeks  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||t...@iki.fi
 Resolution|--- |FIXED

--- Comment #6 from Michael Meeks  ---
For 5-1:

https://gerrit.libreoffice.org/21289 tdf#96657 - vcl opengl: implement invert:
Track Frame.

For master:

https://gerrit.libreoffice.org/21290 tdf#96657 - vcldemo - implement invert:
Track Frame rendering test.
https://gerrit.libreoffice.org/21291 tdf#96657 - vcl opengl: implement invert:
Track Frame.

Review for -5-1 appreciated - Tor ?

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


[Bug 55066] FILEOPEN: flaws in importing 123 files

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

--- Comment #15 from Shubham Tibra  ---
I'd like to work on this bug, is it still open to work on.

But I'll need some help. I am new here.

I didn't understand how the import code works and how it uses the file format?

Can someone help me?

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


[Libreoffice-bugs] [Bug 93529] Meta: VCL/OpenGL tracker bug for 5.0+

2016-01-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 96657, which changed state.

Bug 96657 Summary: The drag and zoom tool does not show the selection area 
rectangle anymore (with openGL activated)
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 93529] Meta: VCL/OpenGL tracker bug for 5.0+

2016-01-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 96550, which changed state.

Bug 96550 Summary: change color of icons on toolbar in Writer when activated 
OpenGL
https://bugs.documentfoundation.org/show_bug.cgi?id=96550

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 93529] Meta: VCL/OpenGL tracker bug for 5.0+

2016-01-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 96550, which changed state.

Bug 96550 Summary: change color of icons on toolbar in Writer when activated 
OpenGL
https://bugs.documentfoundation.org/show_bug.cgi?id=96550

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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


[Libreoffice-bugs] [Bug 96550] change color of icons on toolbar in Writer when activated OpenGL

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

Michael Meeks  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #7 from Michael Meeks  ---
Drat - wrong bug =) re-opening this one.

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


[Libreoffice-bugs] [Bug 93925] Regression: Comments lost in PDF Export of documents with comments inside margin

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

--- Comment #7 from Gerry  ---
@Michael Stahl: I would like to send a 'ping' regarding this regression. Is
there a (simple) solution to this bug introduced by commit
a517fec6f749fa4d5a8e1688bfb776a616e16b14?

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


[Libreoffice-bugs] [Bug 96983] New: SIDEBAR: Addition icons with different type of border cells

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

Bug ID: 96983
   Summary: SIDEBAR: Addition icons with different type of border
cells
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru
CC: libreoffice-ux-adv...@lists.freedesktop.org

Created attachment 121816
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121816=edit
subj image

subj. instead of the drop-down list is better to make some buttons with
frequently used type of border

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


[Libreoffice-bugs] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

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

Lloyd  changed:

   What|Removed |Added

 CC||suman.ty...@gmail.com

--- Comment #3 from Lloyd  ---
*** Bug 96956 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 96956] Checking for an update failed.

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

Lloyd  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Lloyd  ---
This appears to be a duplicate of 80110.

*** This bug has been marked as a duplicate of bug 80110 ***

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


[Libreoffice-bugs] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

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

--- Comment #4 from Lloyd  ---
This occurred for me with versions 5.0.3.2 and 5.0.4.2 (the latest installed
Jan 4 2016) and still occurs today Jan 9.

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


[Libreoffice-ux-advise] [Bug 96969] Calc change entire column selection keyboard shortcut to Ctrl+Space

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

Óvári  changed:

   What|Removed |Added

 Blocks||92453

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: vcl/generic vcl/inc vcl/unx

2016-01-09 Thread Chris Sherlock
 vcl/generic/glyphs/gcach_ftyp.cxx   |4 ++--
 vcl/generic/glyphs/glyphcache.cxx   |6 +++---
 vcl/generic/print/genpspgraphics.cxx|2 +-
 vcl/inc/generic/glyphcache.hxx  |8 
 vcl/unx/generic/gdi/cairotextrender.cxx |4 ++--
 5 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 67925c3b5cf713cfb85a92baebd13708b8649974
Author: Chris Sherlock 
Date:   Sat Jan 9 13:55:21 2016 +1100

vcl: Rename ImplServerFontEntry to ServerFontInstance

I want to keep this class in line with the naming of the base class.
ImplServerFontEntry derives from LogicalFontInstance, so the name
ServerFontInstance is a better fit.

Change-Id: I2d2e3919634c2aaa8e5d6d63b0bf718dec18c336
Reviewed-on: https://gerrit.libreoffice.org/21284
Tested-by: Jenkins 
Reviewed-by: Chris Sherlock 

diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/generic/glyphs/gcach_ftyp.cxx
index 0af7cd9..777cdea 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -434,7 +434,7 @@ ImplFTSFontData::ImplFTSFontData( FreetypeFontInfo* pFI, 
const ImplFontAttribute
 
 LogicalFontInstance* ImplFTSFontData::CreateFontInstance( FontSelectPattern& 
rFSD ) const
 {
-ImplServerFontEntry* pEntry = new ImplServerFontEntry( rFSD );
+ServerFontInstance* pEntry = new ServerFontInstance( rFSD );
 return pEntry;
 }
 
@@ -464,7 +464,7 @@ ServerFont::ServerFont( const FontSelectPattern& rFSD, 
FreetypeFontInfo* pFI )
 {
 // TODO: move update of mpFontInstance into FontEntry class when
 // it becomes responsible for the ServerFont instantiation
-static_cast(rFSD.mpFontInstance)->SetServerFont( 
this );
+static_cast(rFSD.mpFontInstance)->SetServerFont( this 
);
 
 maFaceFT = pFI->GetFaceFT();
 
diff --git a/vcl/generic/glyphs/glyphcache.cxx 
b/vcl/generic/glyphs/glyphcache.cxx
index eab5277..bfac328 100644
--- a/vcl/generic/glyphs/glyphcache.cxx
+++ b/vcl/generic/glyphs/glyphcache.cxx
@@ -353,13 +353,13 @@ void ServerFont::GarbageCollect( long nMinLruIndex )
 }
 }
 
-ImplServerFontEntry::ImplServerFontEntry( FontSelectPattern& rFSD )
+ServerFontInstance::ServerFontInstance( FontSelectPattern& rFSD )
 :   LogicalFontInstance( rFSD )
 ,   mpServerFont( nullptr )
 ,   mbGotFontOptions( false )
 {}
 
-void ImplServerFontEntry::SetServerFont(ServerFont* p)
+void ServerFontInstance::SetServerFont(ServerFont* p)
 {
 if (p == mpServerFont)
 return;
@@ -370,7 +370,7 @@ void ImplServerFontEntry::SetServerFont(ServerFont* p)
 mpServerFont->AddRef();
 }
 
-ImplServerFontEntry::~ImplServerFontEntry()
+ServerFontInstance::~ServerFontInstance()
 {
 // TODO: remove the ServerFont here instead of in the GlyphCache
 if (mpServerFont)
diff --git a/vcl/generic/print/genpspgraphics.cxx 
b/vcl/generic/print/genpspgraphics.cxx
index 335f40c..420437e 100644
--- a/vcl/generic/print/genpspgraphics.cxx
+++ b/vcl/generic/print/genpspgraphics.cxx
@@ -560,7 +560,7 @@ ImplPspFontData::ImplPspFontData( const 
psp::FastPrintFontInfo& rInfo )
 
 LogicalFontInstance* ImplPspFontData::CreateFontInstance( FontSelectPattern& 
rFSD ) const
 {
-ImplServerFontEntry* pEntry = new ImplServerFontEntry( rFSD );
+ServerFontInstance* pEntry = new ServerFontInstance( rFSD );
 return pEntry;
 }
 
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx
index 951c211..b3666f5 100644
--- a/vcl/inc/generic/glyphcache.hxx
+++ b/vcl/inc/generic/glyphcache.hxx
@@ -185,7 +185,7 @@ public:
 private:
 friend class GlyphCache;
 friend class ServerFontLayout;
-friend class ImplServerFontEntry;
+friend class ServerFontInstance;
 friend class X11SalGraphics;
 friend class CairoTextRender;
 
@@ -243,11 +243,11 @@ private:
 };
 
 // a class for cache entries for physical font instances that are based on 
serverfonts
-class VCL_DLLPUBLIC ImplServerFontEntry : public LogicalFontInstance
+class VCL_DLLPUBLIC ServerFontInstance : public LogicalFontInstance
 {
 public:
-ImplServerFontEntry( FontSelectPattern& );
-virtual ~ImplServerFontEntry();
+ServerFontInstance( FontSelectPattern& );
+virtual ~ServerFontInstance();
 
 voidSetServerFont(ServerFont* p);
 voidHandleFontOptions();
diff --git a/vcl/unx/generic/gdi/cairotextrender.cxx 
b/vcl/unx/generic/gdi/cairotextrender.cxx
index 52de75d..e574011 100644
--- a/vcl/unx/generic/gdi/cairotextrender.cxx
+++ b/vcl/unx/generic/gdi/cairotextrender.cxx
@@ -90,7 +90,7 @@ bool CairoTextRender::setFont( const FontSelectPattern 
*pEntry, int nFallbackLev
 mpServerFont[ nFallbackLevel ] = pServerFont;
 
 // apply font specific-hint settings
-ImplServerFontEntry* pSFE = 

[Libreoffice-bugs] [Bug 77650] Improve usability of PDF export of Writer documents with comments

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

--- Comment #7 from Gerry  ---
@Caolán: Since you wrote the code around "printing documents with comments
inside the margin", could you please give your opinion, whether this
enhancement is an Easy Hack or not. Is it just about touching the PDF Export UI
or much more complicated? 

Thanks!

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


[Libreoffice-bugs] [Bug 94655] Emoji not Visible in Exported PDF

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

--- Comment #10 from Beluga  ---
(In reply to Iandol from comment #9)
> Hi, the latest version 2015.3 of NeoOffice has the following bug fix:
> 
> • When exporting a document to PDF, NeoOffice would not include any
> characters that use the Apple Color Emoji font
> 
> See http://www.neooffice.org/neojava/en/features.php
> 
> This sounds the same as this bug, so I wonder if that bug fix can be ported
> to LO? NeoOffice have a CVS server, not sure if they are willing to upstream
> the fix (I suppose with the GPL they have to)?
> 
> Here is where their source code is:
> http://www.neooffice.org/neojava/en/build.php

Well, at least they have sent their license statement:
http://lists.freedesktop.org/archives/libreoffice/2015-October/070432.html

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


[Libreoffice-bugs] [Bug 96960] UI: Elements dropdown not working on mouse click

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |DUPLICATE

--- Comment #1 from Jean-Baptiste Faure  ---
Thanks for reporting. Known bug, already fixed in RC2.

Best regards. JBF

*** This bug has been marked as a duplicate of bug 96119 ***

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


[Libreoffice-bugs] [Bug 96963] Strange names for new lists

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |NOTABUG

--- Comment #3 from Jean-Baptiste Faure  ---
According to comment #2, closing as NotABug.

Please, feel free to reopen if you disagree.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 90401] Allow resetting or removing personal information (author, date/time) on comments and changes

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

Heiko Tietze  changed:

   What|Removed |Added

   Keywords||needsDevEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|Writer  |ux-advise

--- Comment #6 from Heiko Tietze  ---
There was another feature request on G+ dealing with this topic. But this
person wants to just hide the comments not to clean it afterwards. So I suggest
to introduce an option whether of not comments should be personalized. It would
be a checkbox at the context menu of the comment plus another at options >
security. When this option is not checked the time stamp and user id of
comments is hidden. 

Looking at this issue there is an option right now to remove the metadata when
a document is saved. So actually this bug could be solved (and I'd have to open
another since my suggestion is to prevent the creation). 

uxadvice (comments are relevant not only for Writer) + needsdeveval
Could be an easyhack

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


[Libreoffice-bugs] [Bug 96969] Calc change entire column selection keyboard shortcut to Ctrl+Space

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

Óvári  changed:

   What|Removed |Added

 Blocks||92453

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


[Libreoffice-bugs] [Bug 92453] Entire column functionality in formulae keyboard shortcuts

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

Óvári  changed:

   What|Removed |Added

 Depends on||96969

--- Comment #2 from Óvári  ---
Bug 92453 depends on bug 96969
Bug 96969 blocks bug 92453

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


[Libreoffice-bugs] [Bug 94460] External component has thrown an exception, Bootstrap.Bootstrap(), .NET 4 UNO CLI, LibreOffice 5

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

--- Comment #5 from s...@stefanofraccaro.org ---
Seems a duplicate bug of 
https://bugs.documentfoundation.org//show_bug.cgi?id=94265

Right?

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


[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #25 from Michael Meeks  ---
Hi Dipankar

I reviewed a number of those changes; really keeping the Change-Id: the same
would save a lot of effort. Also - please do not refer to gerrit URLs in your
commit messages. git commit messages are part of the permanent record of the
code - once in they cannot be changed; but gerrit URLs are not really ;-) so
... better to add a comment into gerrit itself.

Thanks for the good work !

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


[Libreoffice-bugs] [Bug 94655] Emoji not Visible in Exported PDF

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

--- Comment #9 from Iandol  ---
Hi, the latest version 2015.3 of NeoOffice has the following bug fix:

• When exporting a document to PDF, NeoOffice would not include any characters
that use the Apple Color Emoji font

See http://www.neooffice.org/neojava/en/features.php

This sounds the same as this bug, so I wonder if that bug fix can be ported to
LO? NeoOffice have a CVS server, not sure if they are willing to upstream the
fix (I suppose with the GPL they have to)?

Here is where their source code is:
http://www.neooffice.org/neojava/en/build.php

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


[Libreoffice-bugs] [Bug 96978] updating charts in a spread sheet I created for my own use.

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure  ---
Please attach a test file (without any confidential data) and describe a clear
step by step scenario to reproduce the problem.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 96984] New: Comments of a Google Docs odt-Document: All non-capital letters get black background

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

Bug ID: 96984
   Summary: Comments of a Google Docs odt-Document: All
non-capital letters get black background
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: k...@opentrash.com

User-Agent:   Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36
Build Identifier: LibreOffice 5.1.0.1

Comments of a Google Docs odt-Document:
All non-capital letters get black background, special chars, numbers, and
capital letters are fine (white background)

Reproducible: Always

Steps to Reproduce:
1. Make a Comment in Google Docs and save as odt
2. Open in LibreOffice
Actual Results:  
All non-capital letters are in black on black background

Expected Results:  
Also non-capital letters should appear in black on white background, as capital
letters and all other chars ...

[Information automatically included from LibreOffice]
Locale: de
Module: TextDocument
OS: Windows 7
OS is 64bit: yes


Reset User Profile?No

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


[Libreoffice-bugs] [Bug 96985] New: UI: No background color in SLIDESHOW

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

Bug ID: 96985
   Summary: UI: No background color in SLIDESHOW
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: achim_schae...@gmx.de

Created attachment 121818
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121818=edit
Sample with background colors, which are not shown in the slideshow

When running a slideshow the background color is not shown, but only normal
background color (white) is shown.

Even in a ppt export the background color is not taken into account.
Opening the odp in powerpoint shown the background color in both the editing
mode and as well in slideshow mode.

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


[Libreoffice-commits] core.git: comphelper/source include/comphelper sw/source

2016-01-09 Thread Caolán McNamara
 comphelper/source/container/embeddedobjectcontainer.cxx |   16 +++-
 include/comphelper/embeddedobjectcontainer.hxx  |6 --
 sw/source/core/unocore/unoframe.cxx |5 -
 3 files changed, 19 insertions(+), 8 deletions(-)

New commits:
commit d9b589379cbc41b920dfe3f10e6d2c53431df676
Author: Caolán McNamara 
Date:   Sat Jan 9 14:45:19 2016 +

crashtesting: fdo85994-1.doc assert on reexport to doc

try setting DefaultParentBaseURL based on the parent BaseURL
for objects created this way

Change-Id: I1a660ff6e4874321e0308d556c7ce0e10a2605fe

diff --git a/comphelper/source/container/embeddedobjectcontainer.cxx 
b/comphelper/source/container/embeddedobjectcontainer.cxx
index 127798f..9a91321 100644
--- a/comphelper/source/container/embeddedobjectcontainer.cxx
+++ b/comphelper/source/container/embeddedobjectcontainer.cxx
@@ -368,7 +368,7 @@ uno::Reference 
EmbeddedObjectContainer::Get_Impl(
 }
 
 uno::Reference < embed::XEmbeddedObject > 
EmbeddedObjectContainer::CreateEmbeddedObject( const uno::Sequence < sal_Int8 
>& rClassId,
-const uno::Sequence < beans::PropertyValue >& rArgs, OUString& 
rNewName )
+const uno::Sequence < beans::PropertyValue >& rArgs, OUString& 
rNewName, OUString const* pBaseURL )
 {
 if ( rNewName.isEmpty() )
 rNewName = CreateUniqueObjectName();
@@ -381,10 +381,16 @@ uno::Reference < embed::XEmbeddedObject > 
EmbeddedObjectContainer::CreateEmbedde
 {
 uno::Reference < embed::XEmbeddedObjectCreator > xFactory = 
embed::EmbeddedObjectCreator::create( 
::comphelper::getProcessComponentContext() );
 
-uno::Sequence< beans::PropertyValue > aObjDescr( rArgs.getLength() + 1 
);
+const size_t nExtraArgs = pBaseURL ? 2 : 1;
+uno::Sequence< beans::PropertyValue > aObjDescr( rArgs.getLength() + 
nExtraArgs );
 aObjDescr[0].Name = "Parent";
 aObjDescr[0].Value <<= pImpl->m_xModel.get();
-::std::copy( rArgs.begin(), rArgs.end(), aObjDescr.getArray() + 1 );
+if (pBaseURL)
+{
+aObjDescr[1].Name = "DefaultParentBaseURL";
+aObjDescr[1].Value <<= *pBaseURL;
+}
+::std::copy( rArgs.begin(), rArgs.end(), aObjDescr.getArray() + 
nExtraArgs );
 xObj.set( xFactory->createInstanceInitNew(
 rClassId, OUString(), pImpl->mxStorage, rNewName,
 aObjDescr ), uno::UNO_QUERY );
@@ -402,9 +408,9 @@ uno::Reference < embed::XEmbeddedObject > 
EmbeddedObjectContainer::CreateEmbedde
 return xObj;
 }
 
-uno::Reference < embed::XEmbeddedObject > 
EmbeddedObjectContainer::CreateEmbeddedObject( const uno::Sequence < sal_Int8 
>& rClassId, OUString& rNewName )
+uno::Reference < embed::XEmbeddedObject > 
EmbeddedObjectContainer::CreateEmbeddedObject( const uno::Sequence < sal_Int8 
>& rClassId, OUString& rNewName, OUString const* pBaseURL )
 {
-return CreateEmbeddedObject( rClassId, uno::Sequence < 
beans::PropertyValue >(), rNewName );
+return CreateEmbeddedObject( rClassId, uno::Sequence < 
beans::PropertyValue >(), rNewName, pBaseURL );
 }
 
 void EmbeddedObjectContainer::AddEmbeddedObject( const css::uno::Reference < 
css::embed::XEmbeddedObject >& xObj, const OUString& rName )
diff --git a/include/comphelper/embeddedobjectcontainer.hxx 
b/include/comphelper/embeddedobjectcontainer.hxx
index b7cae38..ddbc6d0 100644
--- a/include/comphelper/embeddedobjectcontainer.hxx
+++ b/include/comphelper/embeddedobjectcontainer.hxx
@@ -98,11 +98,13 @@ public:
 
 // create an object from a ClassId
 css::uno::Reference < css::embed::XEmbeddedObject >
-CreateEmbeddedObject( const css::uno::Sequence < 
sal_Int8 >&, OUString& );
+CreateEmbeddedObject( const css::uno::Sequence < 
sal_Int8 >&, OUString&,
+  OUString const* pBaseURL = 
nullptr );
 
 css::uno::Reference < css::embed::XEmbeddedObject >
 CreateEmbeddedObject( const css::uno::Sequence < 
sal_Int8 >&,
-const css::uno::Sequence < css::beans::PropertyValue 
>&, OUString& );
+const css::uno::Sequence < css::beans::PropertyValue 
>&, OUString&,
+OUString const* pBaseURL = nullptr );
 
 // insert an embedded object into the container - objects persistent 
representation will be added to the storage
 boolInsertEmbeddedObject( const css::uno::Reference < 
css::embed::XEmbeddedObject >&, OUString& );
diff --git a/sw/source/core/unocore/unoframe.cxx 
b/sw/source/core/unocore/unoframe.cxx
index 98bd0ae..0b253ed 100644
--- a/sw/source/core/unocore/unoframe.cxx
+++ b/sw/source/core/unocore/unoframe.cxx
@@ -2924,7 +2924,10 @@ void SwXFrame::attachToRange(const uno::Reference< 
text::XTextRange > & xTextRan
 
 pCnt.reset( new 

[Libreoffice-commits] core.git: vcl/generic vcl/inc vcl/Library_vcl.mk vcl/unx

2016-01-09 Thread Chris Sherlock
 vcl/Library_vcl.mk |2 
 vcl/generic/glyphs/gcach_ftyp.cxx  | 1547 -
 vcl/generic/glyphs/gcach_ftyp.hxx  |  164 ---
 vcl/generic/glyphs/gcach_layout.cxx|2 
 vcl/generic/glyphs/glyphcache.cxx  |2 
 vcl/generic/glyphs/graphite_serverfont.cxx |2 
 vcl/inc/unx/gcach_ftyp.hxx |  164 +++
 vcl/unx/generic/gdi/gcach_ftyp.cxx | 1547 +
 8 files changed, 1715 insertions(+), 1715 deletions(-)

New commits:
commit 86d06c9102d6f59946d7fbfdee5bb40e9a6d0fc6
Author: Chris Sherlock 
Date:   Sat Jan 9 14:41:15 2016 +1100

vcl: move some Freetype stuff away from the "generic" folder

Freetype is definitely not "generic" code. It is only used for Unix
platforms, but is not used for OS X which has it's own font/glyph/text
system called CoreText and that is implemented elsewhere in our
codebase.

Change-Id: I30b2756d2cd9a81b6f746988685295d25ba1de44
Reviewed-on: https://gerrit.libreoffice.org/21286
Tested-by: Jenkins 
Reviewed-by: Chris Sherlock 

diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index f7a1a65..dad511b 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -555,7 +555,6 @@ vcl_generic_code= \
 vcl/generic/print/prtsetup \
 vcl/generic/print/text_gfx \
 vcl/generic/fontmanager/fontsubst \
-vcl/generic/glyphs/gcach_ftyp \
 vcl/generic/glyphs/gcach_layout \
 vcl/generic/glyphs/glyphcache \
 vcl/generic/glyphs/scrptrun \
@@ -588,6 +587,7 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\
 vcl/unx/generic/printer/jobdata \
 vcl/unx/generic/printer/ppdparser \
 vcl/unx/generic/gdi/x11windowprovider \
+vcl/unx/generic/gdi/gcach_ftyp \
 vcl/unx/generic/window/screensaverinhibitor \
 $(if $(filter TRUE,$(ENABLE_CUPS)),\
 vcl/unx/generic/printer/cupsmgr \
diff --git a/vcl/generic/glyphs/gcach_layout.cxx 
b/vcl/generic/glyphs/gcach_layout.cxx
index 8fa3a5f..9aa21bf 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -17,7 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
+#include "unx/gcach_ftyp.hxx"
 #include 
 #include 
 #include 
diff --git a/vcl/generic/glyphs/glyphcache.cxx 
b/vcl/generic/glyphs/glyphcache.cxx
index bfac328..12788c0 100644
--- a/vcl/generic/glyphs/glyphcache.cxx
+++ b/vcl/generic/glyphs/glyphcache.cxx
@@ -19,7 +19,7 @@
 
 #include 
 #include 
-#include 
+#include "unx/gcach_ftyp.hxx"
 
 #include 
 #include 
diff --git a/vcl/generic/glyphs/graphite_serverfont.cxx 
b/vcl/generic/glyphs/graphite_serverfont.cxx
index 7638469..63b0fa7 100644
--- a/vcl/generic/glyphs/graphite_serverfont.cxx
+++ b/vcl/generic/glyphs/graphite_serverfont.cxx
@@ -23,7 +23,7 @@
 #include 
 #include 
 // Module
-#include "gcach_ftyp.hxx"
+#include "unx/gcach_ftyp.hxx"
 #include "generic/glyphcache.hxx"
 #include 
 #include 
diff --git a/vcl/generic/glyphs/gcach_ftyp.hxx b/vcl/inc/unx/gcach_ftyp.hxx
similarity index 100%
rename from vcl/generic/glyphs/gcach_ftyp.hxx
rename to vcl/inc/unx/gcach_ftyp.hxx
diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/unx/generic/gdi/gcach_ftyp.cxx
similarity index 99%
rename from vcl/generic/glyphs/gcach_ftyp.cxx
rename to vcl/unx/generic/gdi/gcach_ftyp.cxx
index 88793e2..0bda2ef 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/unx/generic/gdi/gcach_ftyp.cxx
@@ -20,7 +20,7 @@
 
 #include 
 
-#include "gcach_ftyp.hxx"
+#include "unx/gcach_ftyp.hxx"
 
 #include "vcl/svapp.hxx"
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96550] change color of icons on toolbar in Writer when activated OpenGL

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

--- Comment #8 from Michael Meeks  ---
The interesting thing about this bug is that it works fine on master =) though
since there are no really obvious differences between the vcl/opengl code paths
- I imagine it is caused by changes in the icons themselves (?)

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore (with openGL activated)

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

Michael Meeks  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||t...@iki.fi
 Resolution|--- |FIXED

--- Comment #19 from Michael Meeks  ---
For 5-1:

https://gerrit.libreoffice.org/21289 tdf#96657 - vcl opengl: implement invert:
Track Frame.

For master:

https://gerrit.libreoffice.org/21290 tdf#96657 - vcldemo - implement invert:
Track Frame rendering test.
https://gerrit.libreoffice.org/21291 tdf#96657 - vcl opengl: implement invert:
Track Frame.

Review for -5-1 appreciated - Tor ?

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


[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #24 from Commit Notification 
 ---
Ras-al-Ghul committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=31bc9a228ed02dfa082e3a59c20b0ce106d5c75c

tdf#96888 Kill internal vcl dog-tags ...

It will be available in 5.2.0.

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

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

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


[Libreoffice-commits] core.git: vcl/generic

2016-01-09 Thread Chris Sherlock
 vcl/generic/glyphs/gcach_ftyp.cxx |6 +++---
 vcl/generic/glyphs/gcach_ftyp.hxx |8 
 2 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit afab984f974d95c57b1a580387dcea2127bc3ca6
Author: Chris Sherlock 
Date:   Sat Jan 9 14:03:48 2016 +1100

vcl: Rename class ImplFTSFontData to FreetypeFontFace

ImplFTSFontData derives from PhysicalFontFace, and implements the
mechanisms specified therein. It's not actually a "data" class, but
also implements a factory function that creates a
LogicalFontInstance object via Freetype. I believe the "S" in "FTS"
stands for "Server", which is a misnomer as Freetype is a font
renderer, not a font server.

Change-Id: Ibacc4bf3f850ddfb37016ea2e3e088279b1b1ba1
Reviewed-on: https://gerrit.libreoffice.org/21285
Tested-by: Jenkins 
Reviewed-by: Chris Sherlock 

diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/generic/glyphs/gcach_ftyp.cxx
index 777cdea..88793e2 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -331,7 +331,7 @@ const unsigned char* FreetypeFontInfo::GetTable( const 
char* pTag, sal_uLong* pL
 
 void FreetypeFontInfo::AnnounceFont( PhysicalFontCollection* pFontCollection )
 {
-ImplFTSFontData* pFD = new ImplFTSFontData( this, maDevFontAttributes );
+FreetypeFontFace* pFD = new FreetypeFontFace( this, maDevFontAttributes );
 pFontCollection->Add( pFD );
 }
 
@@ -424,7 +424,7 @@ ServerFont* FreetypeManager::CreateFont( const 
FontSelectPattern& rFSD )
 return pNew;
 }
 
-ImplFTSFontData::ImplFTSFontData( FreetypeFontInfo* pFI, const 
ImplFontAttributes& rDFA )
+FreetypeFontFace::FreetypeFontFace( FreetypeFontInfo* pFI, const 
ImplFontAttributes& rDFA )
 :   PhysicalFontFace( rDFA ),
 mpFreetypeFontInfo( pFI )
 {
@@ -432,7 +432,7 @@ ImplFTSFontData::ImplFTSFontData( FreetypeFontInfo* pFI, 
const ImplFontAttribute
 SetOrientationFlag( true );
 }
 
-LogicalFontInstance* ImplFTSFontData::CreateFontInstance( FontSelectPattern& 
rFSD ) const
+LogicalFontInstance* FreetypeFontFace::CreateFontInstance( FontSelectPattern& 
rFSD ) const
 {
 ServerFontInstance* pEntry = new ServerFontInstance( rFSD );
 return pEntry;
diff --git a/vcl/generic/glyphs/gcach_ftyp.hxx 
b/vcl/generic/glyphs/gcach_ftyp.hxx
index 530b2d3..084ea03 100644
--- a/vcl/generic/glyphs/gcach_ftyp.hxx
+++ b/vcl/generic/glyphs/gcach_ftyp.hxx
@@ -146,16 +146,16 @@ private:
 sal_IntPtr  mnMaxFontId;
 };
 
-class ImplFTSFontData : public PhysicalFontFace
+class FreetypeFontFace : public PhysicalFontFace
 {
 private:
 FreetypeFontInfo* mpFreetypeFontInfo;
 
 public:
-ImplFTSFontData( FreetypeFontInfo*, const 
ImplFontAttributes& );
+FreetypeFontFace( FreetypeFontInfo*, const 
ImplFontAttributes& );
 
-virtual LogicalFontInstance*  CreateFontInstance( FontSelectPattern& ) 
const override;
-virtual PhysicalFontFace* Clone() const override   { return new 
ImplFTSFontData( *this ); }
+virtual LogicalFontInstance* CreateFontInstance( FontSelectPattern& ) 
const override;
+virtual PhysicalFontFace* Clone() const override   { return new 
FreetypeFontFace( *this ); }
 virtual sal_IntPtr  GetFontId() const override { return 
mpFreetypeFontInfo->GetFontId(); }
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96944] FORMATTING Stacked column chart does not show connection lines

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

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
  Component|Calc|Chart
Version|5.1.0.1 rc  |4.2.0.4 release
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from raal  ---
I can confirm with Version: 4.2.0.0.alpha1+
Build ID: fc8f44e82de4ebdd50ac5fbb9207cd1a59a927e3
and Version: 5.2.0.0.alpha0+
Build ID: c1258abe50f1508ea0f628ff963bc1914ab86b67
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-01-02_01:43:32

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


[Libreoffice-bugs] [Bug 96983] SIDEBAR: Addition icons with different type of border cells

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
This is of course for the Cell Appearance content panel of the Properties Deck
in Calc.

Are you suggesting eliminating the current 4 x 4 matrix of borders to apply, or
just adding a *row* of "frequently used" buttons?

A row of frequently used buttons would not be unreasonable, although the entire
deck is getting kind of packed. And the current matrix selector control fits
well with the other controls in the content panel.

However, would *not* agree to eliminating the matrix of border affects.

We've been eliminating labeling of the controls, and now depend on the
tool-tips, but the controls respond to selections made so there is visual queue
to the settings.

Two things that could be improved--since applying the cell borders are
cumulative--the buttons in the matrix should have a selected/non-selected
distinction. Also, the "preview" on the content panel does not render all of
the borders as applied to the selection.

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


[Libreoffice-bugs] [Bug 96970] Load url bar document window name

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure  ---
What is your LibreOffice version and the operating system of your computer?

Best regards. JBF

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


[Libreoffice-bugs] [Bug 96984] Comments of a Google Docs odt-Document: All non-capital letters get black background

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

--- Comment #1 from Daniel Beer  ---
Created attachment 121817
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121817=edit
Partly screenshot of buggy Comments

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


[Libreoffice-bugs] [Bug 70959] HYPERLINK-function with Scriptprotocol don' work

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||jmadero@gmail.com
   Severity|normal  |minor

--- Comment #11 from Joel Madero  ---
(In reply to karolus from comment #9)
> Sorry,Andreas -- it seems it is all for nothing.
> 
> The Devs actually work exclusivly only on implementing every stupid
> "Excel-feature" that's the bitter truth!

*Entirely* false and unhelpful. Instead of complaining from the sidelines maybe
find some time to join QA to actually help move bugs forward:
https://kiwiirc.com/client/irc.freenode.net/libreoffice-qa

Two bibisects:
1) When it actually worked to when it moved to an intermediary step (fails for
a different reason - spitting out error "klick_me" is not an absolute URL that
can be passed to an external application to open it

2) Going from that error to no dialog at all (current state)

+

7be7cf83087144563a18000acdae82c8fd6f4872 is the first bad commit
commit 7be7cf83087144563a18000acdae82c8fd6f4872
Author: Bjoern Michaelsen 
Date:   Mon Dec 10 00:13:53 2012 +

source-hash-d59024b652ccfaf7247da113ec36788fe260de74

commit d59024b652ccfaf7247da113ec36788fe260de74
Author: Michael Stahl 
AuthorDate: Thu Jul 12 22:18:43 2012 +0200
Commit: Michael Stahl 
CommitDate: Thu Jul 12 22:18:43 2012 +0200

warning C4101: unreferenced local variable

Change-Id: I0648821a4d0c716371bb011df8cd9b21db79ccf5

:100644 100644 2e11de60e03551ff9cb9202630fabddffd9b4d03
13d66368624db1158439984d29b9b6b4e382edc1 Mautogen.log
:100644 100644 1aef3215ed700bc4e85fd12d18339c24ebf234a7
1c9624dd465ee0e59acd9c9dd05950b51be0c666 Mccache.log
:100644 100644 f13bcc6696e46ed88900fa5b2390642319998036
b55a2bd9212e07b4042ebd0bb46515c8a4e76c04 Mcommitmsg
:100644 100644 9d65d2f7c48177028e23641bc3eb0528844456f9
5270492409e164dc751ec11e4524f63b7739b35f Mdev-install.log
:100644 100644 9134f8edd2ee62e54d25821b3cc071e2aee24b5a
f188090f0a4137ab411a3ff359ec440f0da4644c Mmake.log
:04 04 e1e8f612101470e3ff2f6a53fc8c5e664103243f
bb164bd44517d96b184ae0ecb1e8ccaf46ba0b4d Mopt

# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# bad: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect bad e02439a3d6297a1f5334fa558ddec5ef4212c574
# bad: [8f4aeaad2f65d656328a451154142bb82efa4327]
source-hash-1885266f274575327cdeee9852945a3e91f32f15
git bisect bad 8f4aeaad2f65d656328a451154142bb82efa4327
# good: [369369915d3582924b3d01c9b01167268ed38f3b]
source-hash-45295f3cdceb4c289553791071b5d7f4962d2ec4
git bisect good 369369915d3582924b3d01c9b01167268ed38f3b
# good: [6fce03a944bf50e90cd31e2d559fe8705ccc993e]
source-hash-47e4a33a6405eb1b5186027f55bd9cb99b0c1fe7
git bisect good 6fce03a944bf50e90cd31e2d559fe8705ccc993e
# bad: [da317333e5675622f55c9dda17396c659af65320]
source-hash-15af925c254f27046427de70a59011e2ac3d6bdb
git bisect bad da317333e5675622f55c9dda17396c659af65320
# good: [daa21bbd8c7b50e2ca1c2cbed0e39f0e7b5a1cb2]
source-hash-6b11a18071254a443c8fe7e7b0b1c95b0f9fd35e
git bisect good daa21bbd8c7b50e2ca1c2cbed0e39f0e7b5a1cb2
# good: [a08143f4bae3d6658dd756b42b6f343298d1f48c]
source-hash-b7822657fa67e7265d07f5852057e975e9efae0d
git bisect good a08143f4bae3d6658dd756b42b6f343298d1f48c
# good: [5255e1fbf1f3fa3ca61c4db3005940205577863c]
source-hash-63c004fc3f0bc53ce888ef012f7993b9203a7503
git bisect good 5255e1fbf1f3fa3ca61c4db3005940205577863c
# bad: [7be7cf83087144563a18000acdae82c8fd6f4872]
source-hash-d59024b652ccfaf7247da113ec36788fe260de74
git bisect bad 7be7cf83087144563a18000acdae82c8fd6f4872
# good: [ad874a5319e9f68e6b3a974e44de838b8a0a82e1]
source-hash-4b4ca8030285bd66526ff5bb2b6ea5a75a6c6bc7
git bisect good ad874a5319e9f68e6b3a974e44de838b8a0a82e1
# first bad commit: [7be7cf83087144563a18000acdae82c8fd6f4872]
source-hash-d59024b652ccfaf7247da113ec36788fe260de74



af0ca5c674c36b4b4043864ae66fbb3f4cb97f51 is the first bad commit
commit af0ca5c674c36b4b4043864ae66fbb3f4cb97f51
Author: Bjoern Michaelsen 
Date:   Wed Oct 16 18:08:35 2013 +

source-hash-79c0bd64be68161ea16f132a015f7143e09f3eaf

commit 79c0bd64be68161ea16f132a015f7143e09f3eaf
Author: Julien Nabet 

Re: [Libreoffice-qa] Bugzilla Tip: Ever want to make private notes on a bug report?

2016-01-09 Thread Robinson Tryon
On Fri, Jan 8, 2016 at 9:58 AM, Eike Rathke  wrote:
> Hi,
>
> On Thursday, 2016-01-07 17:00:20 -0600, Robinson Tryon wrote:
>
>> If any of you have ever wanted to make a private note on a bug report,
>> feel free to use the 'Tags' field. The content in there is only
>> viewable to you, and editing that field won't send email to any other
>> users (so don't be shy about tagging up bugs with your notes!)
>
> Caveat though, that field is really meant as a tags field and not free
> from text. Everything you enter there ends up in a tags list and
> is suggested for further entries, tags are comma separated.

Ah yes, it does have auto-suggestions, although (in my personal
application of the field) I often just ignore them :P

> I'd not use
> that for private comments. The tags system helps though to classify bugs
> according to a personal schema.
>
> Btw, can the tags list be edited somehow?

Not that I'm aware of.

> Unfortunately it is also not
> possible to set tags in a mass change, in all bugs of a search result.

Correct. I feel like that one might be a bit easier to implement than
the former feature. Is bulk-update something that you'd find very
useful, or just a nice-to-have?

Best,
--R

-- 
Robinson Tryon
LibreOffice Community Outreach Herald
QA Bug Wrangler, TDF
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - external_deps.lst

2016-01-09 Thread Andrea Pescetti
 external_deps.lst |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 43fb38f6c55b9c2b30d938cb5a30e7d875ba2bfc
Author: Andrea Pescetti 
Date:   Sat Jan 9 18:56:32 2016 +

#i126781# Replace external FTP sources with HTTP/HTTPS downloads

Patch By: j.nitschke 

diff --git a/external_deps.lst b/external_deps.lst
index dbb7cbe..d480f22 100644
--- a/external_deps.lst
+++ b/external_deps.lst
@@ -86,7 +86,7 @@ if (SOLAR_JAVA==TRUE && SYSTEM_LUCENE!=YES)
 if (ENABLE_NSS_MODULE!=NO && SYSTEM_NSS!=YES)
 MD5 = 1f24ab1d39f4a51faf22244c94a6203f
 name = xmlsec1-1.2.14.tar.gz
-URL1 = ftp://ftp.aleksey.com/pub/xmlsec/releases/xmlsec1-1.2.14.tar.gz
+URL1 = http://xmlsoft.org/sources/xmlsec/releases/$(name)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (SYSTEM_REDLAND != YES)
@@ -176,13 +176,13 @@ if ( true )
 if (SYSTEM_LIBXML != YES)
 MD5 = 8127a65e8c3b08856093099b52599c86
 name = libxml2-2.7.8.tar.gz
-URL1 = ftp://xmlsoft.org/libxml2/libxml2-2.7.8.tar.gz
+URL1 = http://xmlsoft.org/sources/$(name)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (SYSTEM_LIBXSLT != YES)
 MD5 = e61d0364a30146aaa3001296f853b2b9
 name = libxslt-1.1.26.tar.gz
-URL1 = ftp://xmlsoft.org/libxml2/libxslt-1.1.26.tar.gz
+URL1 = http://xmlsoft.org/sources/$(name)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (SOLAR_JAVA == TRUE)
@@ -307,13 +307,13 @@ if (ENABLE_CATEGORY_B==YES && SYSTEM_HUNSPELL!=YES)
 if (ENABLE_CATEGORY_B==YES && SOLAR_JAVA==TRUE && ENABLE_JAVASCRIPT==YES)
 MD5 = 99d94103662a8d0b571e247a77432ac5
 name = rhino1_7R3.zip
-URL1 = ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R3.zip
+URL1 = https://ftp.mozilla.org/pub/js/$(name)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (ENABLE_CATEGORY_B==YES && ENABLE_NSS_MODULE==YES)
 MD5 = 067a04150b1d8b64f7da3019688a7547
 name = nss-3.14.4-with-nspr-4.9.5.tar.gz
-URL1 = 
ftp://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_14_4_RTM/src/nss-3.14.4-with-nspr-4.9.5.tar.gz
+URL1 = 
https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_14_4_RTM/src/$(name)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (ENABLE_CATEGORY_B==YES && SYSTEM_SAXON!=YES && DISABLE_SAXON!=YES && 
SOLAR_JAVA==TRUE)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] Bugzilla Tip: Ever want to make private notes on a bug report?

2016-01-09 Thread Robinson Tryon
On Fri, Jan 8, 2016 at 9:58 AM, Eike Rathke  wrote:
> Hi,
>
> On Thursday, 2016-01-07 17:00:20 -0600, Robinson Tryon wrote:
>
>> If any of you have ever wanted to make a private note on a bug report,
>> feel free to use the 'Tags' field. The content in there is only
>> viewable to you, and editing that field won't send email to any other
>> users (so don't be shy about tagging up bugs with your notes!)
>
> Caveat though, that field is really meant as a tags field and not free
> from text. Everything you enter there ends up in a tags list and
> is suggested for further entries, tags are comma separated.

Ah yes, it does have auto-suggestions, although (in my personal
application of the field) I often just ignore them :P

> I'd not use
> that for private comments. The tags system helps though to classify bugs
> according to a personal schema.
>
> Btw, can the tags list be edited somehow?

Not that I'm aware of.

> Unfortunately it is also not
> possible to set tags in a mass change, in all bugs of a search result.

Correct. I feel like that one might be a bit easier to implement than
the former feature. Is bulk-update something that you'd find very
useful, or just a nice-to-have?

Best,
--R

-- 
Robinson Tryon
LibreOffice Community Outreach Herald
QA Bug Wrangler, TDF
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 96986] Formula Autocomplete When Editing Formula Using $

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Hi @John, thanks for reporting.

I can't reproduce in Win10x64 with:
Version: 5.0.4.2 (x64) Build ID: 2b9802c1994aa0b7dc6079e128979269cf95bc78

There was fixed a less aggressive behaviour in
https://bugs.documentfoundation.org/show_bug.cgi?id=89031

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


[Libreoffice-commits] core.git: 2 commits - vcl/opengl vcl/source vcl/workben

2016-01-09 Thread Michael Meeks
 vcl/opengl/gdiimpl.cxx |   13 -
 vcl/source/outdev/rect.cxx |2 ++
 vcl/workben/vcldemo.cxx|   18 ++
 3 files changed, 28 insertions(+), 5 deletions(-)

New commits:
commit 60790935cc143de49b732e93b6fb923b7669530b
Author: Michael Meeks 
Date:   Sat Jan 9 12:13:15 2016 +

tdf#96657 - vcl opengl: implement invert: Track Frame.

Change-Id: I422ea8cfb8a81cca36203d496b92e15ea5b449d2
Reviewed-on: https://gerrit.libreoffice.org/21291
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 

diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index e00352f..d01d66b 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -576,6 +576,7 @@ bool OpenGLSalGraphicsImpl::UseInvert( SalInvert nFlags )
 if( ( nFlags & SAL_INVERT_50 ) ||
 ( nFlags & SAL_INVERT_TRACKFRAME ) )
 {
+// FIXME: Trackframe really should be 2 pix. on/off stipple.
 if( !UseInvert50() )
 return false;
 mpProgram->SetBlendMode( GL_ONE_MINUS_DST_COLOR,
@@ -1757,7 +1758,17 @@ void OpenGLSalGraphicsImpl::invert(
 PreDraw();
 
 if( UseInvert( nFlags ) )
-DrawRect( nX, nY, nWidth, nHeight );
+{
+if( nFlags & SAL_INVERT_TRACKFRAME )
+{ // FIXME: could be more efficient.
+DrawRect( nX, nY, nWidth, 1 );
+DrawRect( nX, nY + nHeight, nWidth, 1 );
+DrawRect( nX, nY, 1, nHeight );
+DrawRect( nX + nWidth, nY, 1, nHeight );
+}
+else
+DrawRect( nX, nY, nWidth, nHeight );
+}
 
 PostDraw();
 }
commit 7ede462d8a2a05eccede6d47c2f25649858c959d
Author: Michael Meeks 
Date:   Sat Jan 9 12:12:15 2016 +

tdf#96657 - vcldemo - implement invert: Track Frame rendering test.

Change-Id: I07f4622945cf5787102317cfa38875c67104f265
Reviewed-on: https://gerrit.libreoffice.org/21290
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 

diff --git a/vcl/source/outdev/rect.cxx b/vcl/source/outdev/rect.cxx
index 1dc728a..056eb44 100644
--- a/vcl/source/outdev/rect.cxx
+++ b/vcl/source/outdev/rect.cxx
@@ -159,6 +159,8 @@ void OutputDevice::Invert( const Rectangle& rRect, 
InvertFlags nFlags )
 nSalFlags |= SAL_INVERT_HIGHLIGHT;
 if ( nFlags & InvertFlags::N50 )
 nSalFlags |= SAL_INVERT_50;
+if ( nFlags == (InvertFlags) 0x ) // vcldemo trackframe test
+nSalFlags = SAL_INVERT_TRACKFRAME;
 mpGraphics->Invert( aRect.Left(), aRect.Top(), aRect.GetWidth(), 
aRect.GetHeight(), nSalFlags, this );
 }
 
diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx
index 40a37fd..e3016b5 100644
--- a/vcl/workben/vcldemo.cxx
+++ b/vcl/workben/vcldemo.cxx
@@ -570,6 +570,16 @@ public:
 struct DrawEllipse : public RegionRenderer
 {
 RENDER_DETAILS(ellipse,KEY_E,500)
+void doInvert(OutputDevice , const Rectangle ,
+  InvertFlags nFlags)
+{
+rDev.Invert(r, nFlags);
+if (r.GetWidth() > 10 && r.GetHeight() > 10)
+{
+Rectangle aSmall(r.Center()-Point(4,4), Size(8,8));
+rDev.Invert(aSmall,nFlags);
+}
+}
 virtual void RenderRegion(OutputDevice , Rectangle r,
   const RenderContext ) override
 {
@@ -580,10 +590,10 @@ public:
 if (rCtx.meStyle == RENDER_EXPANDED)
 {
 auto aRegions = partition(rCtx, 2, 2);
-rDev.Invert(aRegions[0]);
-rDev.Invert(aRegions[1], InvertFlags::N50);
-rDev.Invert(aRegions[2], InvertFlags::Highlight);
-rDev.Invert(aRegions[3], (InvertFlags)0x);
+doInvert(rDev, aRegions[0], InvertFlags::NONE);
+doInvert(rDev, aRegions[1], InvertFlags::N50);
+doInvert(rDev, aRegions[2], InvertFlags::Highlight);
+doInvert(rDev, aRegions[3], (InvertFlags)0x);
 }
 }
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96993] Images in PDF files opened with 5.1.0.0.beta 2 Draw are inverted.

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

--- Comment #1 from Gene Kohlenberg  ---
Created attachment 121822
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121822=edit
The 5.1.0.0.beta2 drawing file saved of the original pdf document.

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


[Libreoffice-bugs] [Bug 96993] Images in PDF files opened with 5.1.0.0.beta 2 Draw are inverted.

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

m.a.riosv  changed:

   What|Removed |Added

   Keywords||regression
   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1
   Severity|normal  |critical

--- Comment #2 from m.a.riosv  ---
Hi @Gene, thanks for reporting.

Reproducible Win10x64
Version: 5.1.0.1 (x64) Build ID: bcace328aabc4c8c10b56daa87da0a2ee6579b5a
Threads 4; Ver: Windows 6.19; Render: default; 
Version: 5.2.0.0.alpha0+ Build ID: 22e5170af74c635cf55d089f97946b6dc86f82ad
CPU Threads: 4; OS Version: Windows 6.2; UI Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2016-01-05_23:41:26


last working for me.
Version: 5.0.4.2 (x64) Build ID: 2b9802c1994aa0b7dc6079e128979269cf95bc78

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


[Libreoffice-commits] core.git: 2 commits - bridges/test vcl/source

2016-01-09 Thread Caolán McNamara
 bridges/test/inter_libs_exc/inter.cxx |   55 
 bridges/test/inter_libs_exc/makefile.mk   |   71 
 bridges/test/inter_libs_exc/share.h   |   25 
 bridges/test/inter_libs_exc/starter.cxx   |   54 
 bridges/test/inter_libs_exc/starter.map   |   25 
 bridges/test/inter_libs_exc/thrower.cxx   |   37 
 bridges/test/inter_libs_exc/thrower.map   |   25 
 bridges/test/java_remote/Bug107753_Test.java  |  383 -
 bridges/test/java_remote/Bug108825_Test.java  |  159 
 bridges/test/java_remote/Bug110892_Test.java  |  117 
 bridges/test/java_remote/Bug53_Test.java  |   96 
 bridges/test/java_remote/Bug114133_Test.java  |   69 
 bridges/test/java_remote/Bug51323_Test.java   |   76 
 bridges/test/java_remote/Bug92174_Test.java   |   92 
 bridges/test/java_remote/Bug97697_Test.java   |   99 
 bridges/test/java_remote/Bug98508_Test.idl|   31 
 bridges/test/java_remote/Bug98508_Test.java   |   99 
 bridges/test/java_remote/MethodIdTest.java|  466 --
 bridges/test/java_remote/PolyStructTest.idl   |   46 
 bridges/test/java_remote/PolyStructTest.java  |  247 -
 bridges/test/java_remote/StopMessageDispatcherTest.java   |  100 
 bridges/test/java_remote/makefile.mk  |   42 
 bridges/test/java_uno/acquire/TestAcquire.java|  295 -
 bridges/test/java_uno/acquire/makefile.mk |  108 
 bridges/test/java_uno/acquire/readme.txt  |   21 
 bridges/test/java_uno/acquire/testacquire.cxx |  543 --
 bridges/test/java_uno/acquire/types.idl   |   62 
 bridges/test/java_uno/any/TestAny.java| 2246 
--
 bridges/test/java_uno/any/TestJni.java|   42 
 bridges/test/java_uno/any/TestRemote.java |   59 
 bridges/test/java_uno/any/makefile.mk |  118 
 bridges/test/java_uno/any/test_javauno_any.map|   24 
 bridges/test/java_uno/any/transport.cxx   |   99 
 bridges/test/java_uno/any/types.idl   |   36 
 bridges/test/java_uno/equals/TestEquals.java  | 1297 
-
 bridges/test/java_uno/equals/makefile.mk  |   87 
 bridges/test/java_uno/equals/testequals.cxx   |  202 
 bridges/test/java_uno/equals/types.idl|   41 
 bridges/test/java_uno/nativethreadpool/Relay.java |  116 
 bridges/test/java_uno/nativethreadpool/makefile.mk|  112 
 bridges/test/java_uno/nativethreadpool/readme |   30 
 bridges/test/java_uno/nativethreadpool/relay.manifest |2 
 bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx |  157 
 bridges/test/java_uno/nativethreadpool/testnativethreadpoolserver.cxx |  121 
 bridges/test/java_uno/nativethreadpool/types.idl  |   34 
 bridges/test/java_uno/nativethreadpool/version.map|   24 
 bridges/test/lib/TestBed.java |  216 
 bridges/test/lib/makefile.mk  |   27 
 bridges/test/makefile.mk  |  166 
 bridges/test/performance/makefile.mk  |   52 
 bridges/test/performance/testperformance.cxx  |  179 
 bridges/test/test_bridge.idl  |   76 
 bridges/test/testclient.cxx   |  237 -
 bridges/test/testclient.java  |  134 
 bridges/test/testcomp.cxx |  738 
---
 bridges/test/testcomp.h   |  148 
 bridges/test/testoffice.cxx   |  261 -
 bridges/test/testsameprocess.cxx  |  206 
 bridges/test/testserver.cxx   |  243 -
 vcl/source/gdi/bitmap.cxx |   10 
 60 files changed, 5 insertions(+), 10978 deletions(-)

New commits:
commit 9921bae92ebfe1f1372fb4158a51a6f70ea738bd
Author: Caolán McNamara 
Date:   Sat Jan 9 20:46:39 2016 +

cppcheck: 

[Libreoffice-bugs] [Bug 96550] change color of icons on toolbar in Writer when activated OpenGL

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

--- Comment #10 from Michael Meeks  ---
Interestingly; loading the same image to embed it in the document gives a nice,
blue result ;-)

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


[Libreoffice-bugs] [Bug 95899] Display problem with Writer

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #4 from Jean-Baptiste Faure  ---
Please, try to increase the amount of memory allowed to the graphic cache.
In your French UI: Menu Outils > Options > LibreOffice > Mémoire --> Cache des
images

Best regards. JBF

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


[Libreoffice-ux-advise] [Bug 92010] Easier autocomplete access to more frequently used functions

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||jmadero@gmail.com
   Hardware|Other   |All
   Severity|normal  |minor

--- Comment #5 from Joel Madero  ---
In 5.2 it shows "Search()" after typing =s

Bibisect below:

a7db49de2eb22e2626da22cea2e5f0016bb13192 is the first bad commit
commit a7db49de2eb22e2626da22cea2e5f0016bb13192
Author: Bjoern Michaelsen 
Date:   Tue May 20 15:14:52 2014 +

source-hash-21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e

commit 21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e
Author: weigao 
AuthorDate: Mon May 12 22:41:03 2014 +0200
Commit: Markus Mohrhard 
CommitDate: Mon May 12 22:43:04 2014 +0200

some fixes for positioning problems

Change-Id: I4e970837ebe6867458e4a75c7cc323f8f6b3ecc8

:100644 100644 308d098780f879b74ddd7d602b3779f755a92667
506b1ee5ede4b36550cd126a6acbe5aa63aeef6c Mccache.log
:100644 100644 0097e7e8cb2cefdafcc84dd6e74bd82538d6631b
4f6ce8c24edf2bfda04e59fdef851acce9457058 Mcommitmsg
:100644 100644 4d57885ff65362e87a117e0c58058b3579935c57
d86116ba6ae08d8dfb1dd7975fb444e78242f07c Mmake.log
:04 04 d138d86e11955b36705070088175fe0ffc675a89
7288225efb8ddf8078851222d49b287e732e8a18 Mopt


# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# good: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect good e02439a3d6297a1f5334fa558ddec5ef4212c574
# good: [4850941efe43ae800be5c76e1102ab80ac2c085d]
source-hash-980a6e552502f02f12c15bfb1c9f8e6269499f4b
git bisect good 4850941efe43ae800be5c76e1102ab80ac2c085d
# good: [a900e72b6357882284c5955bdf939bf14269f5fb]
source-hash-dd1050b182260a26a1d0ba6d0ef3a6fecc3f4e07
git bisect good a900e72b6357882284c5955bdf939bf14269f5fb
# skip: [e80660c5a1d812cd04586dae1f22767fc3778c4a]
source-hash-07c60c8ee2d1465544a6a39e57bc06b3690b8dfb
git bisect skip e80660c5a1d812cd04586dae1f22767fc3778c4a
# good: [df9bcaed2faa2a8d11b19f877cdff3a12a887278]
source-hash-6ba9692d8bbe3e3c245aca9a7c928e81178d05f1
git bisect good df9bcaed2faa2a8d11b19f877cdff3a12a887278
# good: [741197a13a361480f59eeb3bd1401f984f49f1c0]
source-hash-9a61470eb1fa161cba70f2e9c4ea8817dc7f617e
git bisect good 741197a13a361480f59eeb3bd1401f984f49f1c0
# good: [882db5e268e28962bdf805c820a5e031b0df9936]
source-hash-383dccc094f8c8c07b4298ce0b7406d18cd61cee
git bisect good 882db5e268e28962bdf805c820a5e031b0df9936
# bad: [69e91b0c890097cfb1781733f260644bb1ec9ee8]
source-hash-66fce1f61e7e088bd92e19ecb0dd94553de6f824
git bisect bad 69e91b0c890097cfb1781733f260644bb1ec9ee8
# bad: [a75e194c7cd73082efab3023747075606dd47593]
source-hash-da33122c84c18ea78932c6ee607824c0f3d4de99
git bisect bad a75e194c7cd73082efab3023747075606dd47593
# bad: [6aa6add1039517969f143c18900d352fa2190c4c]
source-hash-f492e45dd2fd1f0ef59f37cd0c3f125203831e98
git bisect bad 6aa6add1039517969f143c18900d352fa2190c4c
# bad: [a7db49de2eb22e2626da22cea2e5f0016bb13192]
source-hash-21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e
git bisect bad a7db49de2eb22e2626da22cea2e5f0016bb13192
# first bad commit: [a7db49de2eb22e2626da22cea2e5f0016bb13192]
source-hash-21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 92010] Easier autocomplete access to more frequently used functions

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||jmadero@gmail.com
   Hardware|Other   |All
   Severity|normal  |minor

--- Comment #5 from Joel Madero  ---
In 5.2 it shows "Search()" after typing =s

Bibisect below:

a7db49de2eb22e2626da22cea2e5f0016bb13192 is the first bad commit
commit a7db49de2eb22e2626da22cea2e5f0016bb13192
Author: Bjoern Michaelsen 
Date:   Tue May 20 15:14:52 2014 +

source-hash-21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e

commit 21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e
Author: weigao 
AuthorDate: Mon May 12 22:41:03 2014 +0200
Commit: Markus Mohrhard 
CommitDate: Mon May 12 22:43:04 2014 +0200

some fixes for positioning problems

Change-Id: I4e970837ebe6867458e4a75c7cc323f8f6b3ecc8

:100644 100644 308d098780f879b74ddd7d602b3779f755a92667
506b1ee5ede4b36550cd126a6acbe5aa63aeef6c Mccache.log
:100644 100644 0097e7e8cb2cefdafcc84dd6e74bd82538d6631b
4f6ce8c24edf2bfda04e59fdef851acce9457058 Mcommitmsg
:100644 100644 4d57885ff65362e87a117e0c58058b3579935c57
d86116ba6ae08d8dfb1dd7975fb444e78242f07c Mmake.log
:04 04 d138d86e11955b36705070088175fe0ffc675a89
7288225efb8ddf8078851222d49b287e732e8a18 Mopt


# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# good: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect good e02439a3d6297a1f5334fa558ddec5ef4212c574
# good: [4850941efe43ae800be5c76e1102ab80ac2c085d]
source-hash-980a6e552502f02f12c15bfb1c9f8e6269499f4b
git bisect good 4850941efe43ae800be5c76e1102ab80ac2c085d
# good: [a900e72b6357882284c5955bdf939bf14269f5fb]
source-hash-dd1050b182260a26a1d0ba6d0ef3a6fecc3f4e07
git bisect good a900e72b6357882284c5955bdf939bf14269f5fb
# skip: [e80660c5a1d812cd04586dae1f22767fc3778c4a]
source-hash-07c60c8ee2d1465544a6a39e57bc06b3690b8dfb
git bisect skip e80660c5a1d812cd04586dae1f22767fc3778c4a
# good: [df9bcaed2faa2a8d11b19f877cdff3a12a887278]
source-hash-6ba9692d8bbe3e3c245aca9a7c928e81178d05f1
git bisect good df9bcaed2faa2a8d11b19f877cdff3a12a887278
# good: [741197a13a361480f59eeb3bd1401f984f49f1c0]
source-hash-9a61470eb1fa161cba70f2e9c4ea8817dc7f617e
git bisect good 741197a13a361480f59eeb3bd1401f984f49f1c0
# good: [882db5e268e28962bdf805c820a5e031b0df9936]
source-hash-383dccc094f8c8c07b4298ce0b7406d18cd61cee
git bisect good 882db5e268e28962bdf805c820a5e031b0df9936
# bad: [69e91b0c890097cfb1781733f260644bb1ec9ee8]
source-hash-66fce1f61e7e088bd92e19ecb0dd94553de6f824
git bisect bad 69e91b0c890097cfb1781733f260644bb1ec9ee8
# bad: [a75e194c7cd73082efab3023747075606dd47593]
source-hash-da33122c84c18ea78932c6ee607824c0f3d4de99
git bisect bad a75e194c7cd73082efab3023747075606dd47593
# bad: [6aa6add1039517969f143c18900d352fa2190c4c]
source-hash-f492e45dd2fd1f0ef59f37cd0c3f125203831e98
git bisect bad 6aa6add1039517969f143c18900d352fa2190c4c
# bad: [a7db49de2eb22e2626da22cea2e5f0016bb13192]
source-hash-21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e
git bisect bad a7db49de2eb22e2626da22cea2e5f0016bb13192
# first bad commit: [a7db49de2eb22e2626da22cea2e5f0016bb13192]
source-hash-21162eab55e3ae6e21c5cef6f7fd1f35d71aac3e

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


[Libreoffice-bugs] [Bug 96994] Alt shortcuts no longer work in any LO components after updating to 5.0.4.2 from 5.0.3.2.

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

--- Comment #1 from David Brian Minter  ---
Rebooted and installed 5.0.3.2.  Alt shortcuts resumed functioning.  Updated
5.0.3.2 again to 5.0.4.2.  Alt shortcuts don't work.  Uninstalled 5.0.4.2 to
install 5.0.4.2 base without updating from 5.0.3.2  Alt shortcuts don't work.


So, since they work in 5.0.3.2 and don't in 5.0.4.2 or 5.1.0.1 RC, it seems
they don't work anymore.  At least, they're not working for me.


I guess I should have mentioned my Windows version earlier.  10.0.10586 x64. 
Using x64 version of LO.

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


[Libreoffice-bugs] [Bug 96995] when putting an email address in a calc file, text will have gray background

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

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jmadero@gmail.com
 Resolution|--- |NOTABUG

--- Comment #2 from Joel Madero  ---
This isn't a bug.

Tools -> Options -> Appearance

Look for "field shadings." 

Setting as NOTABUG.

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


[Libreoffice-bugs] [Bug 96983] SIDEBAR: Addition icons with different type of border cells

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

--- Comment #2 from kompilainenn <79045_79...@mail.ru> ---
(In reply to V Stuart Foote from comment #1)
> This is of course for the Cell Appearance content panel of the Properties
> Deck in Calc.
> 
> Are you suggesting eliminating the current 4 x 4 matrix of borders to apply,
> or just adding a *row* of "frequently used" buttons?

just adding a *row* (or matrix, as in attach) of "frequently used" buttons

> Two things that could be improved--since applying the cell borders are
> cumulative--the buttons in the matrix should have a selected/non-selected
> distinction. 

of cource

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


[Libreoffice-bugs] [Bug 96968] Enhancement Request for a bookmark list in the file menu

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

--- Comment #2 from hans.van.buite...@xs4all.nl ---
Bug 96968 (pushpins) is another solution to the same issue.
I would prefer a bookmark list since it is cleared and is separates the dynamic
from the static, but i guess you would not offer both. While Mozilla does seems
to offer both, for a word processor that might be considered overdone.

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


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

2016-01-09 Thread Caolán McNamara
 vcl/source/window/menu.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 5e217d65e072158e82dd7525c075bbccfdce5902
Author: Caolán McNamara 
Date:   Sat Jan 9 17:11:02 2016 +

WaE: C4702: unreachable code

regression from...

commit 31bc9a228ed02dfa082e3a59c20b0ce106d5c75c
Date:   Sat Jan 9 03:09:49 2016 +0530

tdf#96888 Kill internal vcl dog-tags ...

Change-Id: I3fb375701cd1f8d8d0ea7f8a22b727881eaf90eb

diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 29fd6b9..c29ffda 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -3138,9 +3138,7 @@ sal_uInt16 PopupMenu::ImplExecute( const 
VclPtr& pW, const Rectangl
 if( ! pW->IsDisposed() )
 pW->ImplDecModalCount();
 
-if ( !pWin->IsDisposed() )
-return 0;
-else
+if ( pWin->IsDisposed() )
 return 0;
 
 // Restore focus (could already have been
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/Library_vcl.mk

2016-01-09 Thread Caolán McNamara
 vcl/Library_vcl.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 35fefeaba8faf6c83833b91cb605de576af9e457
Author: Caolán McNamara 
Date:   Sat Jan 9 17:15:50 2016 +

try and fix android build

post...

commit 86d06c9102d6f59946d7fbfdee5bb40e9a6d0fc6
Author: Chris Sherlock 
Date:   Sat Jan 9 14:41:15 2016 +1100

vcl: move some Freetype stuff away from the "generic" folder

I'm not adverse to simply moving these files into the "headless"
dir to further untangle this

Change-Id: Ib0c697b3d829baa92195d29983d39406bb72fce8

diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index dad511b..393d00a 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -578,6 +578,7 @@ vcl_headless_freetype_code=\
 vcl/headless/svptext \
 vcl/headless/svpglyphcache \
 vcl/unx/generic/gdi/cairotextrender \
+vcl/unx/generic/gdi/gcach_ftyp \
 vcl/headless/svpcairotextrender \
 
 ifeq ($(USING_X11),TRUE)
@@ -587,7 +588,6 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\
 vcl/unx/generic/printer/jobdata \
 vcl/unx/generic/printer/ppdparser \
 vcl/unx/generic/gdi/x11windowprovider \
-vcl/unx/generic/gdi/gcach_ftyp \
 vcl/unx/generic/window/screensaverinhibitor \
 $(if $(filter TRUE,$(ENABLE_CUPS)),\
 vcl/unx/generic/printer/cupsmgr \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - solenv/bin

2016-01-09 Thread Andrea Pescetti
 solenv/bin/download_external_dependencies.pl |   55 ---
 1 file changed, 9 insertions(+), 46 deletions(-)

New commits:
commit 1f39c0bdcd0dd917e91bd8133010749543910337
Author: Andrea Pescetti 
Date:   Sat Jan 9 17:43:42 2016 +

#i126469# Fix failing checksums at first download attempt in ./bootstrap

Patch By: j.nitschke 

diff --git a/solenv/bin/download_external_dependencies.pl 
b/solenv/bin/download_external_dependencies.pl
index a33cab3..278e0937 100755
--- a/solenv/bin/download_external_dependencies.pl
+++ b/solenv/bin/download_external_dependencies.pl
@@ -85,15 +85,7 @@ use File::Basename;
 use Digest::MD5;
 use Digest::SHA;
 use URI;
-my $simple = 1;
-if ($simple)
-{
-use LWP::Simple;
-}
-else
-{
-use LWP::UserAgent;
-}
+use LWP::UserAgent;
 
 my $Debug = 1;
 
@@ -538,54 +530,25 @@ sub DownloadFile ($$$)
 
 # Download the extension.
 my $success = 0;
-if ($simple)
-{
-my $content = LWP::Simple::get($URL);
-$success = defined $content;
+
+my $agent = LWP::UserAgent->new();
+$agent->env_proxy;
+my $response = $agent->get($URL);
+
+$success = $response->is_success;
 if ($success)
 {
+my $content = $response->content;
 open $out, ">$temporary_filename";
 binmode($out);
 print $out $content;
-close($out);
 $digest->add($content);
 }
 else
 {
 print "download from $URL failed\n";
 }
-}
-else
-{
-my $agent = LWP::UserAgent->new();
-$agent->timeout(120);
-$agent->env_proxy;
-$agent->show_progress(1);
-my $last_was_redirect = 0;
-$agent->add_handler('response_redirect'
-=> sub{
-$last_was_redirect = 1;
-return;
-});
-$agent->add_handler('response_data'
-=> sub{
-if ($last_was_redirect)
-{
-$last_was_redirect = 0;
-# Throw away the data we got so far.
-$digest->reset();
-close $out;
-open $out, ">$temporary_filename";
-binmode($out);
-}
-my($response,$agent,$h,$data)=@_;
-print $out $data;
-$digest->add($data);
-});
-
-$success = $agent->get($URL)->is_success();
-close $out;
-}
+close($out);
 
 # When download was successful then check the checksum and rename the 
.part file
 # into the actual extension name.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 82797] use modern OpenGL for OGL Transitions

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

Michael Meeks  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||michael.me...@collabora.com

--- Comment #6 from Michael Meeks  ---
Tor - I believe Emmanuel has done this ? is that right =)

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


[Bug 82797] use modern OpenGL for OGL Transitions

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

Michael Meeks  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||michael.me...@collabora.com

--- Comment #6 from Michael Meeks  ---
Tor - I believe Emmanuel has done this ? is that right =)

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


[Libreoffice-bugs] [Bug 96988] New: The place to set the language for the document is ridiculously undiscoverable

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

Bug ID: 96988
   Summary: The place to set the language for the document is
ridiculously undiscoverable
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: teo8...@gmail.com

Note: I noticed this on Calc but it's probably common to all LibreOffice
applications.

When I want to set the language for the current document,
the most reasonable place where I'd expect to find the setting is under
File/Properties. That's where all other properties of the document are (or if
any other is missing, that's an issue), so why on earth shouldn't the language
be there, given it's a property of the document.

That's probably the *only* sensible place.

When not find it there, I'd look for it under the Edit menu (expecting to find
something like "document settings" or something) and my last desperate guess
would be under Tools/Language. At that point, I give up and GOOGLE for it.

It turns out you need to go to Tools/Setting, where you usually set general
settings that are global to the application, not specific to the current
document, so it's unlikely one would even look there. 
There, you have to edit the "Default language for documents" settings and check
the checkbox "apply only to current document". That's a cumbersome,
conterintuitive, and totally undiscoverable place for such a setting.

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


[Libreoffice-bugs] [Bug 96988] The place to set the language for the document is ridiculously undiscoverable

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

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|Calc|ux-advise
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 94655] Emoji not Visible in Exported PDF

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

--- Comment #11 from Iandol  ---
I've emailed Patrick Luby to ask for a patch...

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


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

2016-01-09 Thread Ras-al-Ghul
 vcl/source/window/toolbox.cxx |   24 
 1 file changed, 8 insertions(+), 16 deletions(-)

New commits:
commit 79af5b389b42284ddea3e486c17ace4776bd8e4c
Author: Ras-al-Ghul 
Date:   Fri Jan 8 01:42:50 2016 +0530

tdf#96888 Kill internal vcl dog-tags ...

Did some changes to toolbox.cxx file. Patch No. 19

Change-Id: Ia66d208230c8ffeca095af60b311510a826321d8
Reviewed-on: https://gerrit.libreoffice.org/21236
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 

diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index 3cd2cab..0aa3f19 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -3543,12 +3543,10 @@ bool ToolBox::ImplHandleMouseButtonUp( const 
MouseEvent& rMEvt, bool bCancel )
 if ( !(pItem->mnBits & ToolBoxItemBits::REPEAT) )
 {
 // prevent from being destroyed in the select handler
-ImplDelData aDelData;
-ImplAddDel(  );
+VclPtr xWindow = this;
 Select();
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return true;
-ImplRemoveDel(  );
 }
 }
 
@@ -4048,18 +4046,16 @@ void ToolBox::MouseButtonUp( const MouseEvent& rMEvt )
 
 void ToolBox::Tracking( const TrackingEvent& rTEvt )
 {
-ImplDelData aDelData;
-ImplAddDel(  );
+VclPtr xWindow = this;
 
 if ( rTEvt.IsTrackingEnded() )
 ImplHandleMouseButtonUp( rTEvt.GetMouseEvent(), 
rTEvt.IsTrackingCanceled() );
 else
 ImplHandleMouseMove( rTEvt.GetMouseEvent(), rTEvt.IsTrackingRepeat() );
 
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 // toolbox was deleted
 return;
-ImplRemoveDel(  );
 DockingWindow::Tracking( rTEvt );
 }
 
@@ -5044,12 +5040,10 @@ bool ToolBox::ImplActivateItem( vcl::KeyCode aKeyCode )
 Click();
 
 // #107776# we might be destroyed in the selecthandler
-ImplDelData aDelData;
-ImplAddDel(  );
+VclPtr xWindow = this;
 Select();
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return bRet;
-ImplRemoveDel(  );
 
 Deactivate();
 mbIsKeyEvent = false;
@@ -5140,8 +5134,7 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
 bool bGrabFocusToDocument = false;
 
 // #107776# we might be destroyed in the keyhandler
-ImplDelData aDelData;
-ImplAddDel(  );
+VclPtr xWindow = this;
 
 switch ( nCode )
 {
@@ -5288,9 +5281,8 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
 }
 }
 
-if ( aDelData.IsDead() )
+if ( xWindow->IsDisposed() )
 return;
-ImplRemoveDel(  );
 
 // #107251# move focus away if this toolbox was disabled during keyinput
 if (HasFocus() && mpData->mbKeyInputDisabled && bParentIsContainer)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #27 from Commit Notification 
 ---
Ras-al-Ghul committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=79af5b389b42284ddea3e486c17ace4776bd8e4c

tdf#96888 Kill internal vcl dog-tags ...

It will be available in 5.2.0.

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

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

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


[Libreoffice-commits] core.git: framework/inc framework/source

2016-01-09 Thread Maxim Monastirsky
 framework/inc/uielement/toolbarmerger.hxx   |6 -
 framework/source/uielement/addonstoolbarmanager.cxx |6 +++--
 framework/source/uielement/toolbarmanager.cxx   |2 +
 framework/source/uielement/toolbarmerger.cxx|   23 ++--
 4 files changed, 28 insertions(+), 9 deletions(-)

New commits:
commit ee3cd777e187669f2d9dec156854c00cab948a50
Author: Maxim Monastirsky 
Date:   Sat Jan 9 22:46:16 2016 +0200

Fix Addons.xcu toolbar items width handling

This is useful for some complex controls (e.g. Combobox).
Regression of cb4177b5f6d2c63548fa544a19b36001c57193e4

Change-Id: I683cc20e9db72a4dd58d89063ec6bfcd05a1068e

diff --git a/framework/inc/uielement/toolbarmerger.hxx 
b/framework/inc/uielement/toolbarmerger.hxx
index ea1ab34..4ad1467 100644
--- a/framework/inc/uielement/toolbarmerger.hxx
+++ b/framework/inc/uielement/toolbarmerger.hxx
@@ -44,6 +44,7 @@ struct AddonsParams
 OUString aImageId;
 OUString aTarget;
 OUString aControlType;
+sal_uInt16 nWidth;
 };
 
 struct AddonToolbarItem
@@ -54,6 +55,7 @@ struct AddonToolbarItem
 OUString aTarget;
 OUString aContext;
 OUString aControlType;
+sal_uInt16 nWidth;
 };
 
 typedef ::std::vector< AddonToolbarItem > AddonToolbarItemContainer;
@@ -79,7 +81,8 @@ class ToolBarMerger
OUString& rImageIdentifier,
OUString& rTarget,
OUString& rContext,
-   OUString& rControlType );
+   OUString& rControlType,
+   sal_uInt16& rWidth );
 
 static ReferenceToolbarPathInfo FindReferencePoint( ToolBox* pToolbar,
 const OUString& 
rReferencePoint );
@@ -131,6 +134,7 @@ class ToolBarMerger
 ToolBox*pToolbar,
 const OUString& rCommandURL,
 sal_uInt16  nId,
+sal_uInt16  nWidth,
 const OUString& rControlType );
 
 static void CreateToolbarItem( ToolBox* pToolbox,
diff --git a/framework/source/uielement/addonstoolbarmanager.cxx 
b/framework/source/uielement/addonstoolbarmanager.cxx
index d6e2327..80f6e80 100644
--- a/framework/source/uielement/addonstoolbarmanager.cxx
+++ b/framework/source/uielement/addonstoolbarmanager.cxx
@@ -229,10 +229,11 @@ void AddonsToolBarManager::FillToolbar( const Sequence< 
Sequence< PropertyValue
 OUString   aContext;
 OUString   aTarget;
 OUString   aControlType;
+sal_uInt16 nWidth( 0 );
 
 const Sequence< PropertyValue >& rSeq = rAddonToolbar[n];
 
-ToolBarMerger::ConvertSequenceToValues( rSeq, aURL, aTitle, aImageId, 
aTarget, aContext, aControlType );
+ToolBarMerger::ConvertSequenceToValues( rSeq, aURL, aTitle, aImageId, 
aTarget, aContext, aControlType, nWidth );
 
 if ( IsCorrectContext( aModuleIdentifier, aContext ))
 {
@@ -263,6 +264,7 @@ void AddonsToolBarManager::FillToolbar( const Sequence< 
Sequence< PropertyValue
 AddonsParams* pRuntimeItemData = new AddonsParams;
 pRuntimeItemData->aImageId  = aImageId;
 pRuntimeItemData->aTarget   = aTarget;
+pRuntimeItemData->nWidth= nWidth;
 m_pToolBar->SetItemData( nId, pRuntimeItemData );
 m_pToolBar->SetItemCommand( nId, aURL );
 
@@ -308,7 +310,7 @@ void AddonsToolBarManager::FillToolbar( const Sequence< 
Sequence< PropertyValue
 {
 ::cppu::OWeakObject* pController = nullptr;
 
-pController = ToolBarMerger::CreateController( m_xContext, 
m_xFrame, m_pToolBar, aURL, nId, aControlType );
+pController = ToolBarMerger::CreateController( m_xContext, 
m_xFrame, m_pToolBar, aURL, nId, nWidth, aControlType );
 xController.set( pController, UNO_QUERY );
 }
 
diff --git a/framework/source/uielement/toolbarmanager.cxx 
b/framework/source/uielement/toolbarmanager.cxx
index 25eda26..061bf5c 100644
--- a/framework/source/uielement/toolbarmanager.cxx
+++ b/framework/source/uielement/toolbarmanager.cxx
@@ -707,6 +707,7 @@ void ToolBarManager::CreateControllers()
 {
 // retrieve additional parameters
 OUString aControlType = static_cast< AddonsParams* >( 
m_pToolBar->GetItemData( nId ))->aControlType;
+sal_uInt16 nWidth = static_cast< AddonsParams* >( 
m_pToolBar->GetItemData( nId ))->nWidth;
 
 Reference< XStatusListener > xStatusListener(
 ToolBarMerger::CreateController( m_xContext,
@@ -714,6 +715,7 @@ void ToolBarManager::CreateControllers()

[Libreoffice-commits] core.git: vcl/opengl

2016-01-09 Thread Michael Meeks
 vcl/opengl/salbmp.cxx |   24 ++--
 1 file changed, 18 insertions(+), 6 deletions(-)

New commits:
commit 33208c347182d8fe80bfbe34fe3e0b4b21a0a7a2
Author: Michael Meeks 
Date:   Sat Jan 9 21:25:12 2016 +

tdf#96550 - vcl opengl - fix BGR/RGB swap for some 8-bit icons.

Change-Id: Ic71b8a94cabc392e7b83df70c1691de8f4c12b43

diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx
index 9e59e23..03497dc 100644
--- a/vcl/opengl/salbmp.cxx
+++ b/vcl/opengl/salbmp.cxx
@@ -472,13 +472,25 @@ GLuint OpenGLSalBitmap::CreateTexture()
 pSrcFormat->StartLine( pSrcData );
 
 sal_uInt32 nX = mnBufWidth;
-while( nX-- )
+if (nFormat == GL_BGR)
 {
-const BitmapColor& c = pSrcFormat->ReadPixel();
-
-*pDstData++ = c.GetRed();
-*pDstData++ = c.GetGreen();
-*pDstData++ = c.GetBlue();
+while( nX-- )
+{
+const BitmapColor& c = pSrcFormat->ReadPixel();
+*pDstData++ = c.GetBlue();
+*pDstData++ = c.GetGreen();
+*pDstData++ = c.GetRed();
+}
+}
+else // RGB
+{
+while( nX-- )
+{
+const BitmapColor& c = pSrcFormat->ReadPixel();
+*pDstData++ = c.GetRed();
+*pDstData++ = c.GetGreen();
+*pDstData++ = c.GetBlue();
+}
 }
 
 pSrcData += mnBytesPerRow;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93529] Meta: VCL/OpenGL tracker bug for 5.0+

2016-01-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 96550, which changed state.

Bug 96550 Summary: change color of icons on toolbar in Writer when activated 
OpenGL
https://bugs.documentfoundation.org/show_bug.cgi?id=96550

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 96550] change color of icons on toolbar in Writer when activated OpenGL

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

--- Comment #12 from Commit Notification 
 ---
Michael Meeks committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=33208c347182d8fe80bfbe34fe3e0b4b21a0a7a2

tdf#96550 - vcl opengl - fix BGR/RGB swap for some 8-bit icons.

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 95897] LO Writer causing crashes when highlighting

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #4 from Jean-Baptiste Faure  ---
If you use the LibreOffice version provided by your distribution, did you try
with the vanilla version build by TDF, available on the LibreOffice website?

Which is your Linux distribution?

To be sure, did you try with a clean new profile?
https://wiki.documentfoundation.org/User_Profile

Best regards. JBF

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


[Libreoffice-bugs] [Bug 82135] Cell references don't resolve in imported Excel sheet, but do after edit

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
   Priority|medium  |high
   Hardware|Other   |All
 Whiteboard||interoperability
   Severity|normal  |minor

--- Comment #14 from Joel Madero  ---
Minor: Can slow down but won't prevent high quality/professional work;
High: I think that this is deserved as it's really common functionality and a
user might not see the problem (and they might not know that a hard refresh
will resolve it)


ee1feb893a4fe94061927eb67f65f82d01e1d047 is the first bad commit
commit ee1feb893a4fe94061927eb67f65f82d01e1d047
Author: Bjoern Michaelsen 
Date:   Sun May 11 23:04:20 2014 +

source-hash-f3609ac092bc520825bfd6b71ed20ecaba293317

commit f3609ac092bc520825bfd6b71ed20ecaba293317
Author: Caolán McNamara 
AuthorDate: Tue Mar 11 10:27:41 2014 +
Commit: Caolán McNamara 
CommitDate: Tue Mar 11 12:18:55 2014 +

convert load template dialog to .ui

and merge the expander and the "show preview" checkbox
to be the same thing, i.e. expanded is showing, and
not expanded is not showing

Change-Id: I10e43bc36a0e2e5d1286a4dbad793ee3a700c97c

:100644 100644 aa54328bb749478eb34c9d6f21114aaf4934a46c
f5bf072bce82b837b5f2d70e57a349193f51a94b Mccache.log
:100644 100644 910614ba2ac6f40e795b3a8f637968f83b6673b3
5f305f68af72f960c65aa755b79c323c06295373 Mcommitmsg
:100644 100644 36312cbc0fd2b385bd738f62b53b6e8e91d58e13
13c8e704ccee359e7ef7ade6d0bbe9ab2a21d474 Mmake.log
:04 04 73850cba32ed62160ab74ed837d4262751582417
0b8277ec6ca461462f3986949b4ce83effb363aa Mopt


# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# good: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect good e02439a3d6297a1f5334fa558ddec5ef4212c574
# good: [4850941efe43ae800be5c76e1102ab80ac2c085d]
source-hash-980a6e552502f02f12c15bfb1c9f8e6269499f4b
git bisect good 4850941efe43ae800be5c76e1102ab80ac2c085d
# good: [a900e72b6357882284c5955bdf939bf14269f5fb]
source-hash-dd1050b182260a26a1d0ba6d0ef3a6fecc3f4e07
git bisect good a900e72b6357882284c5955bdf939bf14269f5fb
# skip: [e80660c5a1d812cd04586dae1f22767fc3778c4a]
source-hash-07c60c8ee2d1465544a6a39e57bc06b3690b8dfb
git bisect skip e80660c5a1d812cd04586dae1f22767fc3778c4a
# bad: [df9bcaed2faa2a8d11b19f877cdff3a12a887278]
source-hash-6ba9692d8bbe3e3c245aca9a7c928e81178d05f1
git bisect bad df9bcaed2faa2a8d11b19f877cdff3a12a887278
# bad: [9d57c189d74551d2b3770cc81139ea10a62e672f]
source-hash-5b5e62650354788e50b44f32c22b687b2018aba9
git bisect bad 9d57c189d74551d2b3770cc81139ea10a62e672f
# bad: [ce81582766413e76a63c047bfd6227ab12fcd866]
source-hash-3d1b1eea83703919c43620f9adef05e5b24c4bed
git bisect bad ce81582766413e76a63c047bfd6227ab12fcd866
# bad: [4e0843c411a14e3065f96f196eeb4d603664f97f]
source-hash-51605bf98220d7e54dee20af17c33cebe23a0813
git bisect bad 4e0843c411a14e3065f96f196eeb4d603664f97f
# bad: [6d436a9d8ec82d3192b51a63551bc4640634402d]
source-hash-50d20866aa90150680e6d39998081fc148638c73
git bisect bad 6d436a9d8ec82d3192b51a63551bc4640634402d
# good: [3dda83fc3a43afc6af7f5c0ffd029e610ec1b9a3]
source-hash-c59b3d6c5c8096486730007d9b9b053793b90b1e
git bisect good 3dda83fc3a43afc6af7f5c0ffd029e610ec1b9a3
# bad: [ee1feb893a4fe94061927eb67f65f82d01e1d047]
source-hash-f3609ac092bc520825bfd6b71ed20ecaba293317
git bisect bad ee1feb893a4fe94061927eb67f65f82d01e1d047
# first bad commit: [ee1feb893a4fe94061927eb67f65f82d01e1d047]
source-hash-f3609ac092bc520825bfd6b71ed20ecaba293317

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


[Libreoffice-bugs] [Bug 96994] New: Alt shortcuts no longer work in any LO components after updating to 5.0.4.2 from 5.0.3.2.

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

Bug ID: 96994
   Summary: Alt shortcuts no longer work in any LO components
after updating to 5.0.4.2 from 5.0.3.2.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dmint...@roadrunner.com

I was using LO 5.0.3.2 and the Alt shortcuts worked fine.  I updated to 5.0.4.2
and none of the Alt shortcuts work in any LO component anymore.  For instance,
if I type Alt+F to open File in Writer, all that happens is a lowercase F is
added to the document.  So, the Alt shortcuts apparently don't work anymore
because they did work in 5.0.3.2.  At least they stopped working for me.


I updated 5.0.4.2 to 5.1.0.1 RC.  Issue still present.  Uninstalled 5.1.0.1 RC
so I could reinstall 5.0.3.2 to see if Al keys function is restored.  Could not
install 5.0.3.2 because of random error message I sometimes get saying I don't
have privileges to update certain files in the installation directory.  This
can only be fixed by rebooting Windows.  Unfortunately, this would close down
my dialog for reporting this bug!  So, I'm finishing it now.

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


[Libreoffice-bugs] [Bug 96995] New: when putting an email address in a calc file, text will have gray background

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

Bug ID: 96995
   Summary: when putting an email address in a calc file, text
will have gray background
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: larian...@gmail.com

Created attachment 121824
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121824=edit
Calc file is a sample showing the problem I submitted

When I type or copy an email address into a spreadsheet, it is normal until I
hit the enter key. At that point, the text (not the entire cell) instantly has
a gray background.
The only way I have found to get rid of the gray background is to type ctrl-m.
That removes the background. 
Sometimes, but not always, when I type ctrl-m, the gray leaves, but the address
will be underlined. That can be removed with ctrl-u, as usual.

Although it is a solvable problem, it is aggravating, as I use the Calc program
for a directory, with each entry having an email address.

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


[Libreoffice-bugs] [Bug 96995] when putting an email address in a calc file, text will have gray background

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

--- Comment #1 from Larian Johnson  ---
FYI, I checked to be sure the problem was evident on another computer. It WAS.

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


[Bug 55066] FILEOPEN: flaws in importing 123 files

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

--- Comment #16 from Urmas  ---
What version of Lotus was that file created with?

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


[Libreoffice-bugs] [Bug 55066] FILEOPEN: flaws in importing 123 files

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

--- Comment #16 from Urmas  ---
What version of Lotus was that file created with?

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore (with openGL activated)

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

--- Comment #20 from Commit Notification 
 ---
Michael Meeks committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=7ede462d8a2a05eccede6d47c2f25649858c959d

tdf#96657 - vcldemo - implement invert: Track Frame rendering test.

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore (with openGL activated)

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

--- Comment #21 from Commit Notification 
 ---
Michael Meeks committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=60790935cc143de49b732e93b6fb923b7669530b

tdf#96657 - vcl opengl: implement invert: Track Frame.

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 96993] New: Images in PDF files opened with 5.1.0.0.beta 2 Draw are inverted.

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

Bug ID: 96993
   Summary: Images in PDF files opened with 5.1.0.0.beta 2 Draw
are inverted.
   Product: LibreOffice
   Version: 5.1.0.0.beta1
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gene.kohlenb...@toast.net

Created attachment 121821
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121821=edit
Original pdf created using Microsoft Publisher showing normal orientation of
the images..

When I open a pdf file created using Microsoft Publisher with 5.1.0.0.beta2,
all images are inverted. If I open a pdf file created with Draw, the images are
also inverted by 5.1.0.0.beta2.

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore (with openGL activated)

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

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


[Libreoffice-commits] core.git: vcl/inc vcl/source

2016-01-09 Thread Ras-al-Ghul
 vcl/inc/window.h  |2 
 vcl/source/window/winproc.cxx |   88 ++
 2 files changed, 32 insertions(+), 58 deletions(-)

New commits:
commit e02f5d421933a58b32dc8b9bb0a2027fb3914649
Author: Ras-al-Ghul 
Date:   Sat Jan 9 20:36:35 2016 +0530

tdf#96888 Kill internal vcl dog-tags ..

Deleted a couple of clear statements

Change-Id: I6ca2c565842e1b33b3e52724981f95b634e94263
Reviewed-on: https://gerrit.libreoffice.org/21275
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/vcl/inc/window.h b/vcl/inc/window.h
index 18ff765..64551af 100644
--- a/vcl/inc/window.h
+++ b/vcl/inc/window.h
@@ -404,7 +404,7 @@ public:
 
 // helper methods
 
-bool ImplHandleMouseEvent( vcl::Window* pWindow, MouseNotifyEvent nSVEvent, 
bool bMouseLeave,
+bool ImplHandleMouseEvent( const VclPtr& xWindow, 
MouseNotifyEvent nSVEvent, bool bMouseLeave,
long nX, long nY, sal_uInt64 nMsgTime,
sal_uInt16 nCode, MouseEventModifiers nMode );
 void ImplHandleResize( vcl::Window* pWindow, long nNewWidth, long nNewHeight );
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx
index cdb09cc..5227c2a 100644
--- a/vcl/source/window/winproc.cxx
+++ b/vcl/source/window/winproc.cxx
@@ -196,7 +196,7 @@ static void ImplSetMousePointer( vcl::Window* pChild )
 pChild->ImplGetFrame()->SetPointer( pChild->ImplGetMousePointer() );
 }
 
-static bool ImplCallCommand( vcl::Window* pChild, CommandEventId nEvt, void* 
pData = nullptr,
+static bool ImplCallCommand( const VclPtr& pChild, CommandEventId 
nEvt, void* pData = nullptr,
  bool bMouse = false, Point* pPos = nullptr )
 {
 Point aPos;
@@ -216,19 +216,18 @@ static bool ImplCallCommand( vcl::Window* pChild, 
CommandEventId nEvt, void* pDa
 
 CommandEventaCEvt( aPos, nEvt, bMouse, pData );
 NotifyEvent aNCmdEvt( MouseNotifyEvent::COMMAND, pChild,  );
-VclPtr xWindow = pChild;
 bool bPreNotify = ImplCallPreNotify( aNCmdEvt );
-if ( xWindow->IsDisposed() )
+if ( pChild->IsDisposed() )
 return false;
 if ( !bPreNotify )
 {
 pChild->ImplGetWindowImpl()->mbCommand = false;
 pChild->Command( aCEvt );
 
-if( xWindow->IsDisposed() )
+if( pChild->IsDisposed() )
 return false;
 pChild->ImplNotifyKeyMouseCommandEventListeners( aNCmdEvt );
-if ( xWindow->IsDisposed() )
+if ( pChild->IsDisposed() )
 return false;
 if ( pChild->ImplGetWindowImpl()->mbCommand )
 return true;
@@ -244,7 +243,6 @@ static bool ImplCallCommand( vcl::Window* pChild, 
CommandEventId nEvt, void* pDa
 struct ContextMenuEvent
 {
 VclPtr  pWindow;
-ImplDelData aDelData;
 Point   aChildPos;
 };
 
@@ -252,24 +250,23 @@ static void ContextMenuEventLink( void* pCEvent, void* )
 {
 ContextMenuEvent* pEv = static_cast(pCEvent);
 
-if( ! pEv->aDelData.IsDead() )
+if( ! pEv->pWindow->IsDisposed() )
 {
-pEv->pWindow->ImplRemoveDel( >aDelData );
 ImplCallCommand( pEv->pWindow, CommandEventId::ContextMenu, nullptr, 
true, >aChildPos );
 }
 delete pEv;
 }
 
-bool ImplHandleMouseEvent( vcl::Window* pWindow, MouseNotifyEvent nSVEvent, 
bool bMouseLeave,
+bool ImplHandleMouseEvent( const VclPtr& xWindow, 
MouseNotifyEvent nSVEvent, bool bMouseLeave,
long nX, long nY, sal_uInt64 nMsgTime,
sal_uInt16 nCode, MouseEventModifiers nMode )
 {
 ImplSVData* pSVData = ImplGetSVData();
 Point   aMousePos( nX, nY );
-vcl::Window* pChild(nullptr);
+VclPtr pChild;
 boolbRet(false);
 sal_uInt16  nClicks(0);
-ImplFrameData* pWinFrameData = pWindow->ImplGetFrameData();
+ImplFrameData* pWinFrameData = xWindow->ImplGetFrameData();
 sal_uInt16  nOldCode = pWinFrameData->mnMouseCode;
 
 // we need a mousemove event, before we get a mousebuttondown or a
@@ -280,10 +277,10 @@ bool ImplHandleMouseEvent( vcl::Window* pWindow, 
MouseNotifyEvent nSVEvent, bool
 Help::EndExtHelp();
 if ( pSVData->maHelpData.mpHelpWin )
 {
-if( pWindow->ImplGetWindow() == pSVData->maHelpData.mpHelpWin )
+if( xWindow->ImplGetWindow() == pSVData->maHelpData.mpHelpWin )
 {
 ImplDestroyHelpWindow( false );
-return true; // pWindow is dead now - avoid crash!
+return true; // xWindow is dead now - avoid crash!
 }
 else
 ImplDestroyHelpWindow( true );
@@ -292,7 +289,7 @@ bool ImplHandleMouseEvent( vcl::Window* pWindow, 
MouseNotifyEvent nSVEvent, bool
 if ( 

[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #26 from Commit Notification 
 ---
Ras-al-Ghul committed a patch related to this issue.
It has been pushed to "master":

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

tdf#96888 Kill internal vcl dog-tags ..

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 96977] PIVOTTABLE FORMATTING: pivot table uses the formatted column label which cause errors when calling GETPIVOTDATA

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

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Reproducible.
Win10x64
Version: 5.0.4.2 (x64) Build ID: 2b9802c1994aa0b7dc6079e128979269cf95bc78

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


[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #29 from Michael Meeks  ---
by "abandon" I mean click the 'abandon' button in the gerrit web-ui for any
patches that are obsolete - so they don't show up there anymore ? =)

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


[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

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

--- Comment #28 from Michael Meeks  ---
Nice to see you pushing updated with the same Change-Id: =)
Can you abandon any patches that are not current ? we're really starting to get
there ;-) I'm really looking forward to having these all killed.

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


[Libreoffice-bugs] [Bug 96993] Images in PDF files opened with 5.1.0.0.beta 2 Draw are inverted.

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

--- Comment #3 from Gene Kohlenberg  ---
Comment on attachment 121822
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121822
The 5.1.0.0.beta2 drawing file saved of the original pdf document.

I just discovered that this is an edited file not the raw file, so disregard.
I'll attached the correct one next.

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


[Libreoffice-bugs] [Bug 96993] Images in PDF files opened with 5.1.0.0.beta 2 Draw are inverted.

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

Gene Kohlenberg  changed:

   What|Removed |Added

 Attachment #121822|0   |1
is obsolete||

--- Comment #4 from Gene Kohlenberg  ---
Created attachment 121823
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121823=edit
The correct file showing the pdf file as a saved drawing file with inverted
images.

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


[Libreoffice-bugs] [Bug 96550] change color of icons on toolbar in Writer when activated OpenGL

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

--- Comment #9 from Michael Meeks  ---
It appears to be the icons with an 8-bit colormap, rather than RGBA (which work
fine) that are rendered incorrectly; presumably palletized images. And there
are identical icons on master which render fine; I see this only on the -5-1
branch on windows.

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


[Libreoffice-bugs] [Bug 96550] change color of icons on toolbar in Writer when activated OpenGL

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

Michael Meeks  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #11 from Michael Meeks  ---
Fixed in master, patch for review for -5-1 here:

https://gerrit.libreoffice.org/21295

Review appreciated Tor =)

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


[Libreoffice-bugs] [Bug 76274] Files with XLT extension are not added to Recent documents

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest, regression |
 CC||jmadero@gmail.com

--- Comment #12 from Joel Madero  ---
I'm removing the bibisect request here as it's unclear if ux actually wants the
previous behavior (XLT showing up in recent documents) and if so, how that
should behave. Therefore, no need for a bibisectRequest at this time.

Once UX team decides on the behavior, they can decide whether a bibisect would
be useful or not and add the appropriate keywords (also removing regression as
we're not sure it's actually a regression or wanted behavior at this point).

My suggestion is moving forward, no bibisects on ux-advice issues. If UX team
wants one, they can request it after deciding on a course of action and setting
the component to the appropriate component.

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


[Libreoffice-ux-advise] [Bug 76274] Files with XLT extension are not added to Recent documents

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest, regression |
 CC||jmadero@gmail.com

--- Comment #12 from Joel Madero  ---
I'm removing the bibisect request here as it's unclear if ux actually wants the
previous behavior (XLT showing up in recent documents) and if so, how that
should behave. Therefore, no need for a bibisectRequest at this time.

Once UX team decides on the behavior, they can decide whether a bibisect would
be useful or not and add the appropriate keywords (also removing regression as
we're not sure it's actually a regression or wanted behavior at this point).

My suggestion is moving forward, no bibisects on ux-advice issues. If UX team
wants one, they can request it after deciding on a course of action and setting
the component to the appropriate component.

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


  1   2   3   >