Wrap code for better readability

This commit is contained in:
Simon De Backer
2020-09-07 22:03:40 +02:00
parent 8ee38fab9e
commit 5d92393ee7
202 changed files with 4031 additions and 2153 deletions

View File

@@ -38,13 +38,15 @@ QETResult::QETResult(const QString &error_message, bool result) :
/**
Destructor
*/
QETResult::~QETResult() {
QETResult::~QETResult()
{
}
/**
@return the boolean value embedded within this result.
*/
bool QETResult::isOk() const {
bool QETResult::isOk() const
{
return(result_);
}
@@ -58,7 +60,8 @@ void QETResult::setResult(bool result) {
/**
@return the error message embedded within this result.
*/
QString QETResult::errorMessage() const {
QString QETResult::errorMessage() const
{
return(error_message_);
}