diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-09-07 01:41:35 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2013-01-13 22:41:04 +0100 |
commit | ba2bf102156c921eb3eba950cfe46d593105240e (patch) | |
tree | 7ff917dc93ba557b0eb4beb24ab4c5efbe1e349e /src/menu/static.cpp | |
parent | 1afc45aaae50ab208f75e27e7a4d88004402023e (diff) | |
download | usdx-ba2bf102156c921eb3eba950cfe46d593105240e.tar.gz usdx-ba2bf102156c921eb3eba950cfe46d593105240e.tar.xz usdx-ba2bf102156c921eb3eba950cfe46d593105240e.zip |
menu: code style: change naming of bool-getter to is prefix
Diffstat (limited to '')
-rw-r--r-- | src/menu/static.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu/static.cpp b/src/menu/static.cpp index 40ff3f6e..452ce055 100644 --- a/src/menu/static.cpp +++ b/src/menu/static.cpp @@ -156,7 +156,7 @@ namespace usdx this->filled = filled; } - bool Static::get_filled(void) const + bool Static::is_filled(void) const { return filled; } @@ -166,7 +166,7 @@ namespace usdx this->stroked = stroked; } - bool Static::get_stroked(void) const + bool Static::is_stroked(void) const { return stroked; } |