From e1a44b78db292c8f77b4139425f72411b233676a Mon Sep 17 00:00:00 2001 From: laserpants Date: Sat, 19 Mar 2016 14:12:14 +0300 Subject: [PATCH] update ripple references --- components/flatbutton.h | 2 +- components/iconbutton.cpp | 2 +- qt-material-widgets.pro | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/flatbutton.h b/components/flatbutton.h index ec0c22f..250a3fb 100644 --- a/components/flatbutton.h +++ b/components/flatbutton.h @@ -3,7 +3,7 @@ #include #include -#include "rippleoverlay.h" +#include "../lib/rippleoverlay.h" class FlatButton : public QAbstractButton { diff --git a/components/iconbutton.cpp b/components/iconbutton.cpp index 043d3bd..9c33ce4 100644 --- a/components/iconbutton.cpp +++ b/components/iconbutton.cpp @@ -4,7 +4,7 @@ #include #include #include "iconbutton.h" -#include "rippleoverlay.h" +#include "../lib/rippleoverlay.h" IconButton::IconButton(const QIcon &icon, QWidget *parent) : QAbstractButton(parent), diff --git a/qt-material-widgets.pro b/qt-material-widgets.pro index 7fdad59..9587f05 100644 --- a/qt-material-widgets.pro +++ b/qt-material-widgets.pro @@ -21,8 +21,8 @@ SOURCES += main.cpp\ components/tabs.cpp \ components/textfield.cpp \ components/table.cpp \ - ripple.cpp \ - rippleoverlay.cpp + lib/ripple.cpp \ + lib/rippleoverlay.cpp HEADERS += mainwindow.h \ style.h \ @@ -39,5 +39,5 @@ HEADERS += mainwindow.h \ components/tabs.h \ components/textfield.h \ components/table.h \ - ripple.h \ - rippleoverlay.h + lib/ripple.h \ + lib/rippleoverlay.h