mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
ignored android/libs/
This commit is contained in:
parent
db0e02c05d
commit
822995cbaf
2
.gitignore
vendored
2
.gitignore
vendored
@ -262,3 +262,5 @@ qt/i2pd_qt/*.ui.autosave
|
|||||||
qt/i2pd_qt/*.ui.bk*
|
qt/i2pd_qt/*.ui.bk*
|
||||||
qt/i2pd_qt/*.ui_*
|
qt/i2pd_qt/*.ui_*
|
||||||
|
|
||||||
|
#unknown android stuff
|
||||||
|
android/libs/
|
||||||
|
6
qt/i2pd_qt/pagewithbackbutton.cpp
Normal file
6
qt/i2pd_qt/pagewithbackbutton.cpp
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#include "pagewithbackbutton.h"
|
||||||
|
|
||||||
|
PageWithBackButton::PageWithBackButton(QWidget *parent) : QWidget(parent)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
17
qt/i2pd_qt/pagewithbackbutton.h
Normal file
17
qt/i2pd_qt/pagewithbackbutton.h
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#ifndef PAGEWITHBACKBUTTON_H
|
||||||
|
#define PAGEWITHBACKBUTTON_H
|
||||||
|
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
class PageWithBackButton : public QWidget
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit PageWithBackButton(QWidget *parent = 0);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // PAGEWITHBACKBUTTON_H
|
Loading…
Reference in New Issue
Block a user