summaryrefslogtreecommitdiffstats
path: root/src/generalinfowidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/generalinfowidget.cpp')
-rw-r--r--src/generalinfowidget.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/generalinfowidget.cpp b/src/generalinfowidget.cpp
index 794ab8cd..8445f0e8 100644
--- a/src/generalinfowidget.cpp
+++ b/src/generalinfowidget.cpp
@@ -32,10 +32,10 @@ TQString makeRelativePath(const TQString& fromPath, const TQString& toPath);
GeneralInfoWidget::GeneralInfoWidget(TQDomDocument &projectDom, TQWidget *parent, const char *name)
: GeneralInfoWidgetBase(parent, name), m_projectDom(projectDom) {
- connect(project_directory_edit, TQT_SIGNAL(textChanged(const TQString&)),
- this, TQT_SLOT(slotProjectDirectoryChanged(const TQString&)));
- connect(project_directory_combo, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotProjectDirectoryComboChanged()));
+ connect(project_directory_edit, TQ_SIGNAL(textChanged(const TQString&)),
+ this, TQ_SLOT(slotProjectDirectoryChanged(const TQString&)));
+ connect(project_directory_combo, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotProjectDirectoryComboChanged()));
readConfig();
}
@@ -117,7 +117,7 @@ void GeneralInfoWidget::configureinUpdateVersion( TQString configureinpath, TQSt
// AC_DEFINE(VERSION, "5.6")
TQRegExp ac_define("^AC_DEFINE\\s*\\(");
TQRegExp version("(\\bversion\\b)");
- version.setCaseSensitive(FALSE);
+ version.setCaseSensitive(false);
while ( !stream.eof() ) {
TQString line = stream.readLine();