Dont bother with ctor and dtor in unit test to keep it simple

git-svn-id: http://svn.osgeo.org/qgis/trunk@5216 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2006-04-08 00:18:04 +00:00
parent eb24cea6c8
commit 855b3a95d2
2 changed files with 0 additions and 14 deletions

View File

@ -5,18 +5,6 @@
#include <QString>
TestQgsApplication::TestQgsApplication() : QObject()
{
}
TestQgsApplication::~TestQgsApplication()
{
}
void TestQgsApplication::authorsFilePath()
{
QString myPath = QgsApplication::authorsFilePath();

View File

@ -7,8 +7,6 @@ class TestQgsApplication: public QObject
{
Q_OBJECT;
public:
TestQgsApplication();
~TestQgsApplication();
private slots:
void authorsFilePath();
};