summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/dialer.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/dialer.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/dialer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/dialer.h b/noncore/apps/opie-console/dialer.h
index 20fb3c3..8c83bb6 100644
--- a/noncore/apps/opie-console/dialer.h
+++ b/noncore/apps/opie-console/dialer.h
@@ -3,6 +3,8 @@
#include <qdialog.h>
+#include "profile.h"
+
class QLabel;
class QProgressBar;
@@ -10,7 +12,7 @@ class Dialer : public QDialog
{
Q_OBJECT
public:
- Dialer(const QString& number, QWidget *parent = NULL, const char *name = NULL);
+ Dialer(const Profile& profile, QWidget *parent = NULL, const char *name = NULL);
~Dialer();
public slots:
@@ -42,7 +44,7 @@ class Dialer : public QDialog
QPushButton *cancel;
int state;
int usercancel;
- QString m_number;
+ Profile m_profile;
};
#endif