Fixing constellation zoomer's label.
[debian/gnuradio] / gr-qtgui / src / lib / FrequencyDisplayPlot.cc
index 6f09bbc88a64f169487f2f96ae036f6e0dffee2a..af705fb9657058331347e2d0c187fcedaa6b08ba 100644 (file)
@@ -81,9 +81,9 @@ public:
 protected:
   virtual QwtText trackerText( const QwtDoublePoint& p ) const 
   {
-    QwtText t(QString("%1 %2, %3 dB").arg(p.x(), 0, 'f', 
-                                         GetFrequencyPrecision()).arg(_unitType.c_str()).arg(p.y(), 0, 'f', 2));
-
+    QwtText t(QString("%1 %2, %3 dB").
+             arg(p.x(), 0, 'f', GetFrequencyPrecision()).
+             arg(_unitType.c_str()).arg(p.y(), 0, 'f', 2));
     return t;
   }