summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/graphwindow.h2
-rw-r--r--noncore/net/wellenreiter/gui/scanlist.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/noncore/net/wellenreiter/gui/graphwindow.h b/noncore/net/wellenreiter/gui/graphwindow.h
index 392d85b..8b027ed 100644
--- a/noncore/net/wellenreiter/gui/graphwindow.h
+++ b/noncore/net/wellenreiter/gui/graphwindow.h
@@ -45,13 +45,13 @@ class MFrequencySpectrum : public QWidget
45 virtual void paintEvent( QPaintEvent* ); 45 virtual void paintEvent( QPaintEvent* );
46 virtual void mousePressEvent( QMouseEvent* ); 46 virtual void mousePressEvent( QMouseEvent* );
47 47
48 void drawLine( QPainter* p, int x, int y, int width, const QColor& c ); 48 void drawLine( QPainter* p, int x, int y, int width, const QColor& c );
49 void drawTopLine( QPainter* p, int x, int y, int width, const QColor& c ); 49 void drawTopLine( QPainter* p, int x, int y, int width, const QColor& c );
50 void drawBottomLine( QPainter* p, int x, int y, int width, const QColor& c ); 50 void drawBottomLine( QPainter* p, int x, int y, int width, const QColor& c );
51 void MFrequencySpectrum::drawBar( QPainter* p, int x, int y, int width, int height, int maxheight ); 51 void drawBar( QPainter* p, int x, int y, int width, int height, int maxheight );
52 52
53 private: 53 private:
54 int _channels; 54 int _channels;
55 int* _values; 55 int* _values;
56 bool* _dirty; 56 bool* _dirty;
57}; 57};
diff --git a/noncore/net/wellenreiter/gui/scanlist.h b/noncore/net/wellenreiter/gui/scanlist.h
index eec51af..c7d4562 100644
--- a/noncore/net/wellenreiter/gui/scanlist.h
+++ b/noncore/net/wellenreiter/gui/scanlist.h
@@ -63,22 +63,22 @@ class MScanListView: public Opie::Ui::OListView
63 63
64//****************************** MScanListItem **************************************************************** 64//****************************** MScanListItem ****************************************************************
65 65
66class MScanListItem: public Opie::Ui::OListViewItem 66class MScanListItem: public Opie::Ui::OListViewItem
67{ 67{
68 public: 68 public:
69 MScanListItem::MScanListItem( QListView* parent, 69 MScanListItem( QListView* parent,
70 const QString& type = "unknown", 70 const QString& type = "unknown",
71 const QString& essid = "unknown", 71 const QString& essid = "unknown",
72 const QString& macaddr = "unknown", 72 const QString& macaddr = "unknown",
73 bool wep = false, 73 bool wep = false,
74 int channel = 0, 74 int channel = 0,
75 int signal = 0, 75 int signal = 0,
76 bool probed = false ); 76 bool probed = false );
77 77
78 MScanListItem::MScanListItem( QListViewItem* parent, 78 MScanListItem( QListViewItem* parent,
79 const QString& type = "unknown", 79 const QString& type = "unknown",
80 const QString& essid = "unknown", 80 const QString& essid = "unknown",
81 const QString& macaddr = "unknown", 81 const QString& macaddr = "unknown",
82 bool wep = false, 82 bool wep = false,
83 int channel = 0, 83 int channel = 0,
84 int signal = 0 ); 84 int signal = 0 );