summaryrefslogtreecommitdiff
path: root/cs_CZ
AgeCommit message (Expand)Author
2021-07-28Czech Hunspell: add several word formsStanislav Horacek
2021-07-01Czech Hunspell: fix declination of some nouns ending with "-ec"Stanislav Horacek
2021-07-01Czech Hunspell: fix several verbs of pattern "tisknout"Stanislav Horacek
2021-07-01Czech Hunspell: fix several nouns and adjectivesStanislav Horacek
2021-06-16Czech Hunspell: fix word "třídička"Stanislav Horacek
2021-06-02Czech Hunspell: remove confusing surnamelibreoffice-7-2-branch-pointStanislav Horacek
2021-06-02Czech Hunspell: remove rule based on circumfix and make other updatesStanislav Horacek
2021-06-02Czech Hunspell: use KEY and update TRY in .aff fileStanislav Horacek
2021-06-02Czech Hunspell: remove duplicatesStanislav Horacek
2021-06-02more updates of Czech HunspellStanislav Horacek
2021-06-02update Czech Hunspell filesStanislav Horacek
2021-05-31Czech Hunspell: sort words in .dic fileStanislav Horacek
2021-05-31Czech Hunspell: use UTF8 encodingStanislav Horacek
2021-05-31restore more advanced Czech Hunspell dictionaryStanislav Horacek
2019-10-24tdf#128341 use python3Mattia Rizzolo
2019-10-24flake8 fixes to the dictionary-to-thesaurus scriptMattia Rizzolo
2019-09-16remove incorrect Czech wordStanislav Horacek
2018-11-04update readme for Czech dictionarieslibreoffice-6-2-branch-pointStanislav Horacek
2017-05-21Make sure all dictionary descriptions are translatedGabor Kelemen
2016-11-20Czech thesaurus: regenerate from updated sourceStanislav Horacek
2016-11-07Czech thesaurus: regenerate from updated sourceStanislav Horacek
2016-02-26Czech thesaurus: Blacklist more words + re-generate after the recent changes.Jan Holesovsky
2016-02-26dictionary-to-thesaurus.py: Put the better categorized words to the front.Jan Holesovsky
2016-02-26dictionary-to-thesaurus.py: Only output the same class of word.Jan Holesovsky
2016-02-25Czech thesaurus: Updates of some terms.Jan Holesovsky
2016-02-25Czech thesaurus: Blacklist some unhelpful meanings.Jan Holesovsky
2016-02-25dictionary-to-thesaurus.py: Move blacklist to a separate file.Jan Holesovsky
2016-02-25Related tdf#93514: Introduce a new Czech thesaurus.Jan Holesovsky
2016-02-25dictionary-to-thesaurus.py: Actually use the Czech names.Jan Holesovsky
2016-02-25dictionary-to-thesaurus.py: Various cleanups.Jan Holesovsky
2016-02-25dos2unix on the cs_CZ files.Jan Holesovsky
2016-02-25Czech: Script and dictionary to generate the Czech thesaurus.Jan Holesovsky
2015-09-01tdf#93514 remove Czech thesaurusChristian Lohmaier
2015-04-07Fix errors reported by hunspell in Czech affPetr Gajdos
2014-05-15update Czech dictionary from liberix sitelibreoffice-4-3-branch-pointDavid Tardon
2012-10-24drop stray delzip filesDavid Tardon
2012-10-23gbuild: let ExtensionTarget expect manifest below META-INFMichael Stahl
2012-10-16move dictionaries structure one directory upNorbert Thiebaud
-5-1-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/vcl/source/components/fontident.cxx
AgeCommit message (Collapse)Author
2017-10-23loplugin:includeform: vclStephan Bergmann
Change-Id: Id7dea3917740aaf4db8dada5e2bea6e117d714ea
2017-01-26Remove dynamic exception specificationsStephan Bergmann
...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html> "Dynamic Exception Specifications" for details. Most changes have been done automatically by the rewriting loplugin:dynexcspec (after enabling the rewriting mode, to be committed shortly). The way it only removes exception specs from declarations if it also sees a definition, it identified some dead declarations-w/o-definitions (that have been removed manually) and some cases where a definition appeared in multiple include files (which have also been cleaned up manually). There's also been cases of macro paramters (that were used to abstract over exception specs) that have become unused now (and been removed). Furthermore, some code needed to be cleaned up manually (avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no configurations available that would actually build that code. Missing @throws documentation has not been applied in such manual clean-up. Change-Id: I3408691256c9b0c12bc5332de976743626e13960 Reviewed-on: https://gerrit.libreoffice.org/33574 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2016-11-23loplugin:unnecessaryoverride (dtors) in vclStephan Bergmann
Change-Id: I38e24991308bf52e75259a30d332145aef9a757b
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
The issue of 362d4f0cd4e50111edfae9d30c90602c37ed65a2 "Explicitly mark overriding destructors as 'virtual'" appears to no longer be a problem with MSVC 2013. (The little change in the rewriting code of compilerplugins/clang/override.cxx was necessary to prevent an endless loop when adding "override" to OOO_DLLPUBLIC_CHARTTOOLS virtual ~CloseableLifeTimeManager(); in chart2/source/inc/LifeTime.hxx, getting stuck in the leading OOO_DLLPUBLIC_CHARTTOOLS macro. Can't remember what that isAtEndOfImmediateMacroExpansion thing was originally necessary for, anyway.) Change-Id: I534c634504d7216b9bb632c2775c04eaf27e927e