X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fviewitem.cpp;h=7213f96d28657b5c9c19475048484d66052d9938;hb=4c7a19d3d7049bcc9fb3185ce2bc91333a7ca9e1;hp=e9602f8790ddcec61767509cd694524cbd3d8cd6;hpb=a009d21992db132679e27030736ed614522245ea;p=pulseview.git diff --git a/pv/view/viewitem.cpp b/pv/view/viewitem.cpp index e9602f8..7213f96 100644 --- a/pv/view/viewitem.cpp +++ b/pv/view/viewitem.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 "viewitem.hpp" @@ -27,7 +26,8 @@ #include namespace pv { -namespace view { +namespace views { +namespace TraceView { const QSizeF ViewItem::LabelPadding(4, 0); const int ViewItem::HighlightRadius = 3; @@ -112,19 +112,19 @@ void ViewItem::paint_label(QPainter &p, const QRect &rect, bool hover) (void)hover; } -void ViewItem::paint_back(QPainter &p, const ViewItemPaintParams &pp) +void ViewItem::paint_back(QPainter &p, ViewItemPaintParams &pp) { (void)p; (void)pp; } -void ViewItem::paint_mid(QPainter &p, const ViewItemPaintParams &pp) +void ViewItem::paint_mid(QPainter &p, ViewItemPaintParams &pp) { (void)p; (void)pp; } -void ViewItem::paint_fore(QPainter &p, const ViewItemPaintParams &pp) +void ViewItem::paint_fore(QPainter &p, ViewItemPaintParams &pp) { (void)p; (void)pp; @@ -135,5 +135,6 @@ QColor ViewItem::select_text_colour(QColor background) return (background.lightness() > 110) ? Qt::black : Qt::white; } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv