|
a/src/qtgui/ssearch_w.h |
|
b/src/qtgui/ssearch_w.h |
1 |
/* @(#$Id: ssearch_w.h,v 1.4 2006-12-04 06:19:11 dockes Exp $ (C) 2006 J.F.Dockes */
|
1 |
/* @(#$Id: ssearch_w.h,v 1.5 2006-12-04 09:56:27 dockes Exp $ (C) 2006 J.F.Dockes */
|
2 |
/*
|
2 |
/*
|
3 |
* This program is free software; you can redistribute it and/or modify
|
3 |
* This program is free software; you can redistribute it and/or modify
|
4 |
* it under the terms of the GNU General Public License as published by
|
4 |
* it under the terms of the GNU General Public License as published by
|
5 |
* the Free Software Foundation; either version 2 of the License, or
|
5 |
* the Free Software Foundation; either version 2 of the License, or
|
6 |
* (at your option) any later version.
|
6 |
* (at your option) any later version.
|
|
... |
|
... |
36 |
public: DummySSearchBase(QWidget* parent = 0) : SSearchBase(parent) {}
|
36 |
public: DummySSearchBase(QWidget* parent = 0) : SSearchBase(parent) {}
|
37 |
};
|
37 |
};
|
38 |
#else
|
38 |
#else
|
39 |
class DummySSearchBase : public QWidget, public Ui::SSearchBase
|
39 |
class DummySSearchBase : public QWidget, public Ui::SSearchBase
|
40 |
{
|
40 |
{
|
41 |
public: DummySSearchBase(QWidget* parent) {setupUi(parent);}
|
41 |
public: DummySSearchBase(QWidget* parent) : QWidget(parent) {setupUi(this);}
|
42 |
};
|
42 |
};
|
43 |
#endif
|
43 |
#endif
|
44 |
//MOC_SKIP_END
|
44 |
//MOC_SKIP_END
|
45 |
|
45 |
|
46 |
class SSearch : public DummySSearchBase
|
46 |
class SSearch : public DummySSearchBase
|