mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-01-04 03:20:53 +01:00
Wrap code for better readability
This commit is contained in:
@@ -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_);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user