From 71b809959bb8f775d83dc52628448bb8b8322b28 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 14 Apr 2015 12:44:47 +0200 Subject: remove unnecessary use of void in function declarations ie. void f(void); becomes void f(); I used the following command to make the changes: git grep -lP '\(\s*void\s*\)' -- *.cxx \ | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;' and ran it for both .cxx and .hxx files. Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd --- ucb/source/ucp/ftp/ftpdirp.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ucb/source/ucp/ftp/ftpdirp.hxx') diff --git a/ucb/source/ucp/ftp/ftpdirp.hxx b/ucb/source/ucp/ftp/ftpdirp.hxx index c306989b838e..676a5064a35c 100644 --- a/ucb/source/ucp/ftp/ftpdirp.hxx +++ b/ucb/source/ucp/ftp/ftpdirp.hxx @@ -67,7 +67,7 @@ namespace ftp { void SetSec(sal_uInt16 seconds) { Seconds = seconds; } void SetNanoSec(sal_uInt32 nanoSec) { NanoSeconds = nanoSec; } - sal_uInt16 GetMonth(void) { return Month; } + sal_uInt16 GetMonth() { return Month; } }; @@ -92,7 +92,7 @@ namespace ftp { sal_uInt32 m_nMode; sal_uInt32 m_nSize; - FTPDirentry(void) + FTPDirentry() : m_aDate(0,0,0,0,0,0,0), m_nMode(INETCOREFTP_FILEMODE_UNKNOWN), m_nSize((sal_uInt32)(-1)) { } -- cgit tro/cib/libreoffice-5-4'>distro/cib/libreoffice-5-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/accessibility/source/helper
AgeCommit message (Expand)Author
2018-03-20lokdialog: Allow switching language of some of the ResMgr's.Jan Holesovsky
2017-10-09accessibility: consistently use "" and <> in include directivesMike Kaganski
2017-08-11convert std::map::insert to std::map::emplaceNoel Grandin
2017-08-02normalize resource locale ctor construction mechanismsCaolán McNamara
2017-08-01move resmgr to unotoolsCaolán McNamara
2017-07-21migrate to boost::gettextCaolán McNamara
2017-05-16loplugin:comparisonwithconstant in accessibilityNoel Grandin
2017-04-30untranslated strings are just stringsCaolán McNamara
2017-04-19clang-tidy readability-simplify-boolean-expr in accessibility..cuiNoel Grandin
2017-03-23loplugins:redundantcast teach it about c-style typedef castsNoel Grandin
2017-03-14remove unused RID constantsNoel Grandin
2017-02-14Convert WindowType to scoped enumNoel Grandin
2017-02-01makeAny->Any in accessibility..avmediaNoel Grandin
2017-01-07accessibility: simplify CharacterAttributesHelper.Arnaud Versini
2017-01-06Localize return value of EditBrowseBoxTableCell::getAccessibleNameMuhammet Kara
2016-11-11update vclwidget loplugin to find ref-dropping assigmentNoel Grandin
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
2016-05-27Get rid of unnecessary directory levels $D/inc/$DTor Lillqvist
2016-02-09Remove excess newlinesChris Sherlock
2016-02-04vcl: take into account the font width is the average font widthChris Sherlock
2016-01-21vcl: rename Font::GetFamily to Font::GetFamilyTypeChris Sherlock
2016-01-17vcl: rename Font::GetName to Font::GetFamilyNameChris Sherlock
2016-01-16revert vcl patch series that brok Mac and WindowsNorbert Thiebaud
2016-01-16vcl: rename Font::GetName to Font::GetFamilyNameChris Sherlock
2015-12-17Remove unused ToolPanel (aka TaskPane)Samuel Mehrbrodt
2015-12-03Use comphelper::containerToSequence()Noel Grandin
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-07-17com::sun::star->css in accessibilityNoel Grandin
2015-07-06tdf#88206: replace cppu::WeakImplHelper* and cppu::WeakComponentImplHelper*Takeshi Abe
2015-06-08loplugin:cstylecast: deal with remaining pointer castsStephan Bergmann
2015-04-10accessibility: cleanup for updated toolkit API.Michael Meeks