[Libreoffice-bugs] [Bug 137779] Add info about Jumbo sheets status into About dialog

bugzilla-daemon at bugs.documentfoundation.org bugzilla-daemon at bugs.documentfoundation.org
Thu Feb 4 09:04:55 UTC 2021


https://bugs.documentfoundation.org/show_bug.cgi?id=137779

Heiko Tietze <heiko.tietze at documentfoundation.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |difficultyBeginner,
                   |                            |easyHack, skillCpp, topicQA

--- Comment #8 from Heiko Tietze <heiko.tietze at documentfoundation.org> ---
Code pointer:
cui/source/dialogs/about.cxx 

OUString AboutDialog::GetMiscString()
...
    aCalcMode += "threaded";
  }

add 

  if (officecfg::Office::Calc::Defaults::Sheet::JumboSheets::get()) 
  {
      if (!aCalcMode.endsWith(" "))
         aCalcMode += " ";
      aCalcMode += "Jumbo";
  } 

(this shows for example "Calc: threaded Jumbo", if enabled)

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20210204/2e982186/attachment-0001.htm>


More information about the Libreoffice-bugs mailing list