X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fflag.cpp;h=3afd255fc7ac05eba350c331d0731a129c4277e1;hb=cbf7b5db5c3c04b95daf77bc0e6dc112c15e0195;hp=779ea2eec24cd8d5088b2675f9ede6978c682ba1;hpb=60d9b99a32e551cffd2b537d3e157d578a761c9b;p=pulseview.git diff --git a/pv/view/flag.cpp b/pv/view/flag.cpp index 779ea2ee..3afd255f 100644 --- a/pv/view/flag.cpp +++ b/pv/view/flag.cpp @@ -33,7 +33,8 @@ using std::shared_ptr; namespace pv { -namespace view { +namespace views { +namespace TraceView { const QColor Flag::FillColour(0x73, 0xD2, 0x16); @@ -45,7 +46,7 @@ Flag::Flag(View &view, const pv::util::Timestamp& time, const QString &text) : Flag::Flag(const Flag &flag) : TimeMarker(flag.view_, FillColour, flag.time_), - std::enable_shared_from_this(flag) + std::enable_shared_from_this(flag) { } @@ -108,5 +109,6 @@ void Flag::on_text_changed(const QString &text) view_.time_item_appearance_changed(true, false); } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv