Make clang-tidy happier

remotes/origin/work/aacid/dont_show_non_valid_certs
Katarina Behrens 6 years ago committed by Albert Astals Cid
parent 62a4c63fd3
commit 20b34d00c9
  1. 2
      generators/poppler/certificatetools.h
  2. 4
      part/pageviewannotator.cpp
  3. 2
      part/pageviewannotator.h

@ -18,7 +18,7 @@ class CertificateTools : public QWidget
{
Q_OBJECT
Q_PROPERTY( QStringList certificates READ certificates WRITE setCertificates NOTIFY changed USER true )
Q_PROPERTY(QStringList certificates READ certificates WRITE setCertificates NOTIFY changed USER true)
public:
explicit CertificateTools( QWidget * parent = nullptr );

@ -853,9 +853,9 @@ PageViewAnnotator::~PageViewAnnotator()
delete m_quickToolsDefinition;
}
void PageViewAnnotator::setSignatureMode(bool sigMode)
void PageViewAnnotator::setSignatureMode(bool enabled)
{
m_signatureMode = sigMode;
m_signatureMode = enabled;
}
bool PageViewAnnotator::signatureMode() const

@ -70,7 +70,7 @@ public:
// @return Are we currently annotating (using the selected tool)?
bool annotating() const;
void setSignatureMode(bool forced);
void setSignatureMode(bool enabled);
bool signatureMode() const;
// returns the preferred cursor for the current tool. call this only

Loading…
Cancel
Save