summaryrefslogtreecommitdiff
path: root/gtk2_ardour/fft_graph.cc
diff options
context:
space:
mode:
authorNils Philippsen <nils@tiptoe.de>2016-08-04 09:48:47 +0200
committerNils Philippsen <nils@tiptoe.de>2016-08-04 09:52:22 +0200
commit65c2e089ab263c83bff7d2e945b80c53f80b749b (patch)
tree4009d005e196cf1d21c3cef8159e5f99be4d4e59 /gtk2_ardour/fft_graph.cc
parentd6fd0486aef08fcccf013d889734971ed01eaedd (diff)
workaround changes in glibmm 2.49.x
Glib::RefPtr defines the operator bool() as explicit which breaks comparisons like "some_ref_ptr == 0" or "... != 0". https://bugzilla.gnome.org/show_bug.cgi?id=769502
Diffstat (limited to 'gtk2_ardour/fft_graph.cc')
-rw-r--r--gtk2_ardour/fft_graph.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/fft_graph.cc b/gtk2_ardour/fft_graph.cc
index abed0c70d7..ec54acbaaa 100644
--- a/gtk2_ardour/fft_graph.cc
+++ b/gtk2_ardour/fft_graph.cc
@@ -312,7 +312,7 @@ FFTGraph::draw_scales (cairo_t* cr)
cairo_line_to (cr, width - 3 , .5 + v_margin); // 5
cairo_stroke (cr);
- if (layout == 0) {
+ if (! layout) {
layout = create_pango_layout ("");
layout->set_font_description (get_style ()->get_font ());
}