blob: ed256d9d53f4439ea0db75e2f9d48ad65e50536c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef OPIE_BIG_SCREEN_PRIVATE
#define OPIE_BIG_SCREEN_PRIVATE
namespace Opie {
struct OSplitterContainer {
bool operator==( const OSplitterContainer& o)const {
if (widget != o.widget ) return false;
if (icon != o.icon ) return false;
if (name != o.name ) return false;
return true;
}
QWidget* widget;
QString icon;
QString name;
};
}
#endif
|