summaryrefslogtreecommitdiff
authorzecke <zecke>2003-04-13 16:42:26 (UTC)
committer zecke <zecke>2003-04-13 16:42:26 (UTC)
commit3bd592876c43c11ed44b2f3725d4c7425ebceb09 (patch) (unidiff)
tree9396bed490c6b167e955977024021650e5509c30
parent78d427d8eceac5cb0a92e4f46b7aa3b784d2c214 (diff)
downloadopie-3bd592876c43c11ed44b2f3725d4c7425ebceb09.zip
opie-3bd592876c43c11ed44b2f3725d4c7425ebceb09.tar.gz
opie-3bd592876c43c11ed44b2f3725d4c7425ebceb09.tar.bz2
make it compile
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/konsole.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp
index 9c1167b..c324c35 100644
--- a/core/apps/embeddedkonsole/konsole.cpp
+++ b/core/apps/embeddedkonsole/konsole.cpp
@@ -765,13 +765,13 @@ void Konsole::colorMenuSelected(int iD)
765 } 765 }
766#ifdef QT_QWS_OPIE 766#ifdef QT_QWS_OPIE
767 if(iD==-19) { 767 if(iD==-19) {
768// Custom 768// Custom
769 qDebug("do custom"); 769 qDebug("do custom");
770 if(fromMenu) { 770 if(fromMenu) {
771 ColorPopupMenu* penColorPopupMenu = new ColorPopupMenu(Qt::black, this, "foreground color"); 771 OColorPopupMenu* penColorPopupMenu = new OColorPopupMenu(Qt::black, this, "foreground color");
772 connect(penColorPopupMenu, SIGNAL(colorSelected(const QColor&)), this, 772 connect(penColorPopupMenu, SIGNAL(colorSelected(const QColor&)), this,
773 SLOT(changeForegroundColor(const QColor&))); 773 SLOT(changeForegroundColor(const QColor&)));
774 penColorPopupMenu->exec(); 774 penColorPopupMenu->exec();
775 } 775 }
776 cfg.writeEntry("Schema","19"); 776 cfg.writeEntry("Schema","19");
777 if(!fromMenu) { 777 if(!fromMenu) {
@@ -1017,13 +1017,13 @@ void Konsole::changeForegroundColor(const QColor &color) {
1017 qDebug("foreground "+color.name()); 1017 qDebug("foreground "+color.name());
1018 cfg.write(); 1018 cfg.write();
1019 1019
1020qDebug("do other dialog"); 1020qDebug("do other dialog");
1021#ifdef QT_QWS_OPIE 1021#ifdef QT_QWS_OPIE
1022 1022
1023 ColorPopupMenu* penColorPopupMenu2 = new ColorPopupMenu(Qt::black, this,"background color"); 1023 OColorPopupMenu* penColorPopupMenu2 = new OColorPopupMenu(Qt::black, this,"background color");
1024 connect(penColorPopupMenu2, SIGNAL(colorSelected(const QColor&)), this, 1024 connect(penColorPopupMenu2, SIGNAL(colorSelected(const QColor&)), this,
1025 SLOT(changeBackgroundColor(const QColor&))); 1025 SLOT(changeBackgroundColor(const QColor&)));
1026 penColorPopupMenu2->exec(); 1026 penColorPopupMenu2->exec();
1027#endif 1027#endif
1028} 1028}
1029 1029