diff options
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/account.h b/src/account.h index 26ebe261..7a632b35 100644 --- a/src/account.h +++ b/src/account.h @@ -89,6 +89,10 @@ public: } ~account_t(); + virtual string description() { + return string(_("account ")) + fullname(); + } + operator string() const { return fullname(); } |