X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fbinding%2Fdecoder.cpp;h=39bff52bf0cb55f3ee29aba01995a275769ab2c4;hb=870ea3dbf35b182e120c5d84ab89bf9cb7691232;hp=7d29e2fdad1b940b963251e190dfa589d77f6591;hpb=2ad82c2e40b6865481733913a2c32735602f63c4;p=pulseview.git diff --git a/pv/binding/decoder.cpp b/pv/binding/decoder.cpp index 7d29e2f..39bff52 100644 --- a/pv/binding/decoder.cpp +++ b/pv/binding/decoder.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -129,10 +128,7 @@ Glib::VariantBase Decoder::getter(const char *id) } } - if (val) - return Glib::VariantBase(val, true); - else - return Glib::VariantBase(); + return (val) ? Glib::VariantBase(val, true) : Glib::VariantBase(); } void Decoder::setter(const char *id, Glib::VariantBase value) @@ -144,5 +140,5 @@ void Decoder::setter(const char *id, Glib::VariantBase value) decoder_stack_->begin_decode(); } -} // binding -} // pv +} // namespace binding +} // namespace pv