summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/customexecutablerunconfiguration.h
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2009-01-29 15:48:54 +0100
committercon <qtc-committer@nokia.com>2009-01-29 15:49:38 +0100
commitf781076c5a8caa5db7ecfaa02cd0a0e6ec0f0d75 (patch)
tree07ee2f6dfb19bd2e6cd2f0e999f39e682498666e /src/plugins/projectexplorer/customexecutablerunconfiguration.h
parentb04ac61ef00b001a23dfed9ff7bbf6162291b1e4 (diff)
downloadqt-creator-f781076c5a8caa5db7ecfaa02cd0a0e6ec0f0d75.tar.gz
Fixes: - Custom executable GUI cleanup
Task: - 237690
Diffstat (limited to 'src/plugins/projectexplorer/customexecutablerunconfiguration.h')
-rw-r--r--src/plugins/projectexplorer/customexecutablerunconfiguration.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/projectexplorer/customexecutablerunconfiguration.h b/src/plugins/projectexplorer/customexecutablerunconfiguration.h
index 52cbedd51c..f2f05cb0b2 100644
--- a/src/plugins/projectexplorer/customexecutablerunconfiguration.h
+++ b/src/plugins/projectexplorer/customexecutablerunconfiguration.h
@@ -36,6 +36,8 @@
#include "applicationrunconfiguration.h"
+#include <utils/pathchooser.h>
+
#include <QtGui/QToolButton>
QT_BEGIN_NAMESPACE
@@ -108,18 +110,16 @@ public:
CustomExecutableConfigurationWidget(CustomExecutableRunConfiguration *rc);
private slots:
void changed();
- void executableToolButtonClicked();
- void workingDirectoryToolButtonClicked();
- void setExecutable(const QString &executable);
+ void setExecutable();
void setCommandLineArguments(const QString &commandLineArguments);
- void setWorkingDirectory(const QString &workingDirectory);
+ void setWorkingDirectory();
private:
bool m_ignoreChange;
CustomExecutableRunConfiguration *m_runConfiguration;
- QLineEdit *m_executableLineEdit;
+ Core::Utils::PathChooser *m_executableChooser;
QLineEdit *m_commandLineArgumentsLineEdit;
- QLineEdit *m_workingDirectoryLineEdit;
+ Core::Utils::PathChooser *m_workingDirectory;
};
}
}