rename ScrollBar files from scrollbar to scrollwidget to clear up QtCreator mess

This commit is contained in:
laserpants 2016-06-19 16:39:11 +03:00
parent 35221f43eb
commit d2c3f904db
7 changed files with 17 additions and 17 deletions

View File

@ -1,8 +1,8 @@
#include "scrollbar.h"
#include "scrollwidget.h"
#include <QPainter>
#include <QApplication>
#include "scrollbar_p.h"
#include "scrollbar_internal.h"
#include "scrollwidget_p.h"
#include "scrollwidget_internal.h"
#include "lib/style.h"
ScrollBarPrivate::ScrollBarPrivate(ScrollBar *q)

View File

@ -1,5 +1,5 @@
#ifndef SCROLLBAR_H
#define SCROLLBAR_H
#ifndef SCROLLWIDGET_H
#define SCROLLWIDGET_H
#include <QScrollBar>
@ -37,4 +37,4 @@ private:
Q_DECLARE_PRIVATE(ScrollBar)
};
#endif // SCROLLBAR_H
#endif // SCROLLWIDGET_H

View File

@ -1,4 +1,4 @@
#include "scrollbar_internal.h"
#include "scrollwidget_internal.h"
#include <QPropertyAnimation>
#include <QEventTransition>

View File

@ -2,7 +2,7 @@
#define SCROLLBAR_INTERNAL_H
#include <QStateMachine>
#include "scrollbar.h"
#include "scrollwidget.h"
class ScrollBar;

View File

@ -1,5 +1,5 @@
#ifndef SCROLLBAR_P_H
#define SCROLLBAR_P_H
#ifndef SCROLLWIDGET_P_H
#define SCROLLWIDGET_P_H
#include <QObject>
@ -25,4 +25,4 @@ public:
bool useThemeColors;
};
#endif // SCROLLBAR_P_H
#endif // SCROLLWIDGET_P_H

View File

@ -6,7 +6,7 @@
#include "components/badge.h"
#include "exampleview.h"
#include "frame.h"
#include "components/scrollbar.h"
#include "components/scrollwidget.h"
AvatarExamples::AvatarExamples(QWidget *parent)
: ExampleList(parent)

View File

@ -68,8 +68,8 @@ SOURCES += main.cpp\
components/circularprogress.cpp \
components/circularprogress_internal.cpp \
components/progress_internal.cpp \
components/scrollbar.cpp \
components/scrollbar_internal.cpp
components/scrollwidget.cpp \
components/scrollwidget_internal.cpp
HEADERS += mainwindow.h \
components/appbar.h \
@ -148,9 +148,9 @@ HEADERS += mainwindow.h \
components/circularprogress_p.h \
components/circularprogress_internal.h \
components/progress_internal.h \
components/scrollbar.h \
components/scrollbar_p.h \
components/scrollbar_internal.h
components/scrollwidget_p.h \
components/scrollwidget.h \
components/scrollwidget_internal.h
RESOURCES += \
resources.qrc