Re-factored the basic idea of the application: Engine is the main class that ownsWind...
[qtmeetings] / src / UserInterface / Utils / PasswordDialog.h
index 5bf8c62..86879c9 100644 (file)
@@ -35,9 +35,9 @@ public:
         * \param aText Optional. Text displayed in the dialog.
         * \param aTitle Optional. Dialog title, defaults to "Enter password".
         * \return The instance which was created.
-        */
        static PasswordDialog * query( QWidget *aParent, const QString &aPassword,
                                                 const QString &aText = 0, const QString &aTitle = 0 );
+                                                */
 
 signals:
        //! Signals the authenticity of the password when the uuser dismisses the dialog.
@@ -51,14 +51,14 @@ private slots:
        void okButtonPressed();
        void cancelButtonPressed();
 
-private:
+public:
        //! Constructor.
        /*!
         * Constructor to initialize a PasswordDialog instance.
         * \param aParent The parent object.
         * \param aPassword The password.
         */
-       PasswordDialog( QWidget *aParent, const QString &aPassword, const QString &aText, const QString &aTitle );
+       PasswordDialog( const QString &aPassword, const QString &aText, const QString &aTitle = "", QWidget *aParent = 0 );
        //! Destructor.
        virtual ~PasswordDialog();