-rw-r--r-- | noncore/settings/appearance2/appearance.cpp | 3 | ||||
-rw-r--r-- | noncore/settings/appearance2/appearance.h | 6 | ||||
-rw-r--r-- | noncore/settings/appearance2/editScheme.cpp | 5 | ||||
-rw-r--r-- | noncore/settings/appearance2/editScheme.h | 6 | ||||
-rw-r--r-- | noncore/settings/appearance2/main.cpp | 1 |
5 files changed, 11 insertions, 10 deletions
diff --git a/noncore/settings/appearance2/appearance.cpp b/noncore/settings/appearance2/appearance.cpp index 8ae87fe..6b9fe4d 100644 --- a/noncore/settings/appearance2/appearance.cpp +++ b/noncore/settings/appearance2/appearance.cpp | |||
@@ -75,3 +75,4 @@ | |||
75 | using namespace Opie; | 75 | using namespace Opie; |
76 | 76 | using namespace Opie::Ui; | |
77 | using namespace Opie::Core; | ||
77 | 78 | ||
diff --git a/noncore/settings/appearance2/appearance.h b/noncore/settings/appearance2/appearance.h index f45f549..134a918 100644 --- a/noncore/settings/appearance2/appearance.h +++ b/noncore/settings/appearance2/appearance.h | |||
@@ -37,3 +37,3 @@ | |||
37 | 37 | ||
38 | using Opie::OFontSelector; | 38 | using Opie::Ui::OFontSelector; |
39 | 39 | ||
@@ -49,3 +49,3 @@ class QToolButton; | |||
49 | class SampleWindow; | 49 | class SampleWindow; |
50 | class OFontSelector; | 50 | namespace Opie {namespace Ui {class OFontSelector;}} |
51 | class QListView; | 51 | class QListView; |
@@ -114,3 +114,3 @@ private: | |||
114 | 114 | ||
115 | OFontSelector *m_fontselect; | 115 | Opie::Ui::OFontSelector *m_fontselect; |
116 | 116 | ||
diff --git a/noncore/settings/appearance2/editScheme.cpp b/noncore/settings/appearance2/editScheme.cpp index 0f3702f..18c69a5 100644 --- a/noncore/settings/appearance2/editScheme.cpp +++ b/noncore/settings/appearance2/editScheme.cpp | |||
@@ -38,2 +38,3 @@ | |||
38 | 38 | ||
39 | using namespace Opie::Ui; | ||
39 | EditScheme::EditScheme ( int cnt, const QString *labels, QColor *colors, QWidget* parent, const char* name, bool modal, WFlags ) | 40 | EditScheme::EditScheme ( int cnt, const QString *labels, QColor *colors, QWidget* parent, const char* name, bool modal, WFlags ) |
@@ -45,3 +46,3 @@ EditScheme::EditScheme ( int cnt, const QString *labels, QColor *colors, QWidget | |||
45 | m_count = cnt; | 46 | m_count = cnt; |
46 | m_buttons = new OColorButton * [cnt]; | 47 | m_buttons = new Opie::OColorButton * [cnt]; |
47 | m_colors = colors; | 48 | m_colors = colors; |
@@ -54,3 +55,3 @@ EditScheme::EditScheme ( int cnt, const QString *labels, QColor *colors, QWidget | |||
54 | 55 | ||
55 | m_buttons [i] = new OColorButton ( this, colors [i] ); | 56 | m_buttons [i] = new Opie::OColorButton ( this, colors [i] ); |
56 | layout-> addWidget ( m_buttons [i], i, 1 ); | 57 | layout-> addWidget ( m_buttons [i], i, 1 ); |
diff --git a/noncore/settings/appearance2/editScheme.h b/noncore/settings/appearance2/editScheme.h index c7539cb..302652c 100644 --- a/noncore/settings/appearance2/editScheme.h +++ b/noncore/settings/appearance2/editScheme.h | |||
@@ -35,6 +35,4 @@ | |||
35 | 35 | ||
36 | using Opie::OColorButton; | ||
37 | |||
38 | class QColor; | 36 | class QColor; |
39 | class OColorButton; | 37 | namespace Opie {namespace Ui {class OColor;}} |
40 | 38 | ||
@@ -53,3 +51,3 @@ private: | |||
53 | QColor *m_colors; | 51 | QColor *m_colors; |
54 | OColorButton **m_buttons; | 52 | Opie::OColorButton **m_buttons; |
55 | }; | 53 | }; |
diff --git a/noncore/settings/appearance2/main.cpp b/noncore/settings/appearance2/main.cpp index 8ac45d8..87061e3 100644 --- a/noncore/settings/appearance2/main.cpp +++ b/noncore/settings/appearance2/main.cpp | |||
@@ -32,2 +32,3 @@ | |||
32 | 32 | ||
33 | using namespace Opie::Core; | ||
33 | OPIE_EXPORT_APP( OApplicationFactory<Appearance> ) | 34 | OPIE_EXPORT_APP( OApplicationFactory<Appearance> ) |