X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frow.cpp;h=1266b8436e1e09934b92418b62e5a6ebc42e7728;hb=2601ce965fc455d23f5a964b84ddd74eb93705c4;hp=70a060938aedb11642ae2eb8e7526ac8054d295c;hpb=4c60462b00cc329e61daedd1c2e66724077bd412;p=pulseview.git diff --git a/pv/data/decode/row.cpp b/pv/data/decode/row.cpp index 70a06093..1266b843 100644 --- a/pv/data/decode/row.cpp +++ b/pv/data/decode/row.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 "row.hpp" @@ -52,8 +51,8 @@ const QString Row::title() const { if (decoder_ && decoder_->name && row_ && row_->desc) return QString("%1: %2") - .arg(QString::fromUtf8(decoder_->name)) - .arg(QString::fromUtf8(row_->desc)); + .arg(QString::fromUtf8(decoder_->name), + QString::fromUtf8(row_->desc)); if (decoder_ && decoder_->name) return QString::fromUtf8(decoder_->name); if (row_ && row_->desc) @@ -67,6 +66,6 @@ bool Row::operator<(const Row &other) const (decoder_ == other.decoder_ && row_ < other.row_); } -} // decode -} // data -} // pv +} // namespace decode +} // namespace data +} // namespace pv