X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fbinding%2Fbinding.cpp;h=79ce90a3e7eed7b1e6f4548a838e850e80c0edd5;hp=f2a28d3972b2b59c77f0f98142957a5888c5e5bb;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=2ad82c2e40b6865481733913a2c32735602f63c4 diff --git a/pv/binding/binding.cpp b/pv/binding/binding.cpp index f2a28d3..79ce90a 100644 --- a/pv/binding/binding.cpp +++ b/pv/binding/binding.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 @@ -27,11 +26,13 @@ #include "binding.hpp" using std::shared_ptr; +using std::string; +using std::vector; namespace pv { namespace binding { -const std::vector< std::shared_ptr >& Binding::properties() +const vector< shared_ptr >& Binding::properties() { return properties_; } @@ -79,7 +80,7 @@ QString Binding::print_gvariant(Glib::VariantBase gvar) s = QString::fromStdString("(null)"); else if (gvar.is_of_type(Glib::VariantType("s"))) s = QString::fromStdString( - Glib::VariantBase::cast_dynamic>( + Glib::VariantBase::cast_dynamic>( gvar).get()); else s = QString::fromStdString(gvar.print());