]> sigrok.org Git - pulseview.git/blobdiff - pv/view/marginwidget.hpp
TraceView: Fix variable name
[pulseview.git] / pv / view / marginwidget.hpp
index 0a24ad2ece705bde08e7c4be1af1421e680e9b7d..1f87776197e61bd52f2248d1befe6b7294b06d21 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
  */
 
-#ifndef PULSEVIEW_PV_MARGINWIDGET_H
-#define PULSEVIEW_PV_MARGINWIDGET_H
+#ifndef PULSEVIEW_PV_MARGINWIDGET_HPP
+#define PULSEVIEW_PV_MARGINWIDGET_HPP
 
 #include <memory>
 
@@ -28,7 +27,8 @@
 #include "viewwidget.hpp"
 
 namespace pv {
-namespace view {
+namespace views {
+namespace TraceView {
 
 class ViewItem;
 
@@ -37,7 +37,7 @@ class MarginWidget : public ViewWidget
        Q_OBJECT
 
 public:
-       MarginWidget(pv::view::View &parent);
+       MarginWidget(View &parent);
 
        /**
         * The extended area that the margin widget would like to be sized to.
@@ -52,7 +52,7 @@ protected:
         * @param item the view item that has been clicked.
         */
        virtual void item_clicked(
-               const std::shared_ptr<pv::view::ViewItem> &item);
+               const std::shared_ptr<ViewItem> &item);
 
        /**
         * Shows the popup of a the specified @c ViewItem .
@@ -63,10 +63,11 @@ protected:
 protected:
        virtual void contextMenuEvent(QContextMenuEvent *event);
 
-       virtual void keyPressEvent(QKeyEvent *e);
+       virtual void keyPressEvent(QKeyEvent *event);
 };
 
-} // namespace view
+} // namespace TraceView
+} // namespace views
 } // namespace pv
 
-#endif // PULSEVIEW_PV_MARGINWIDGET_H
+#endif // PULSEVIEW_PV_MARGINWIDGET_HPP