diff options
Diffstat (limited to 'kexi/main/startup/KexiStartup.h')
-rw-r--r-- | kexi/main/startup/KexiStartup.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/main/startup/KexiStartup.h b/kexi/main/startup/KexiStartup.h index 22c55440..fe1b3cf0 100644 --- a/kexi/main/startup/KexiStartup.h +++ b/kexi/main/startup/KexiStartup.h @@ -42,7 +42,7 @@ class KEXIMAIN_EXPORT KexiDBPasswordDialog : public KPasswordDialog Q_OBJECT TQ_OBJECT public: - KexiDBPasswordDialog(TQWidget *tqparent, KexiDB::ConnectionData& cdata, bool showDetailsButton = false); + KexiDBPasswordDialog(TQWidget *parent, KexiDB::ConnectionData& cdata, bool showDetailsButton = false); virtual ~KexiDBPasswordDialog(); bool showConnectionDetailsRequested() const { return m_showConnectionDetailsRequested; } @@ -73,12 +73,12 @@ class KEXIMAIN_EXPORT KexiStartupHandler #if 0 /*! Used for opening existing projects. Detects project file type by mime type and returns project data, if it can be detected, - otherwise - NULL. \a tqparent is passed as tqparent for potential error message boxes. + otherwise - NULL. \a parent is passed as parent for potential error message boxes. Also uses \a cdata connection data for server-based projects. cdata.driverName is adjusted, if a file-based project has been detected. */ static KexiProjectData* detectProjectData( - KexiDB::ConnectionData& cdata, const TQString &dbname, TQWidget *tqparent); + KexiDB::ConnectionData& cdata, const TQString &dbname, TQWidget *parent); #endif /*! Options for detectDriverForFile() */ @@ -103,20 +103,20 @@ class KEXIMAIN_EXPORT KexiStartupHandler - "shortcut" if the file looks like a shortcut to a project/connection file - "connection" if the file looks like a connection data file. - \a tqparent is passed as a tqparent for potential error message boxes. + \a parent is passed as a parent for potential error message boxes. \a driverName is a preferred driver name. \a options should be a combination of DetectDriverForFileOptions enum values. */ static tristate detectActionForFile( KexiStartupData::Import& detectedImportAction, TQString& detectedDriverName, const TQString& _suggestedDriverName, - const TQString &dbFileName, TQWidget *tqparent = 0, int options = 0 ); + const TQString &dbFileName, TQWidget *parent = 0, int options = 0 ); /*! Allows user to select a project with KexiProjectSelectorDialog. \return selected project's data Returns NULL and sets cancelled to true if the dialog was cancelled. Returns NULL and sets cancelled to false if there was an error. */ - KexiProjectData* selectProject(KexiDB::ConnectionData *cdata, bool& cancelled, TQWidget *tqparent = 0); + KexiProjectData* selectProject(KexiDB::ConnectionData *cdata, bool& cancelled, TQWidget *parent = 0); protected slots: void slotSaveShortcutFileChanges(); |