Rename QWORKBENCH_UTILS_EXPORT to QTCREATOR_UTILS_EXPORT

Rename QWORKBENCH_UTILS_LIBRARY to QTCREATOR_UTILS_LIBRARY
This commit is contained in:
Alessandro Portale
2009-05-08 12:09:21 +02:00
parent 2be7226215
commit c757c3f458
31 changed files with 46 additions and 46 deletions

View File

@@ -48,7 +48,7 @@ namespace Utils {
struct SynchronousProcessPrivate;
/* Result of SynchronousProcess execution */
struct QWORKBENCH_UTILS_EXPORT SynchronousProcessResponse
struct QTCREATOR_UTILS_EXPORT SynchronousProcessResponse
{
enum Result {
// Finished with return code 0
@@ -71,7 +71,7 @@ struct QWORKBENCH_UTILS_EXPORT SynchronousProcessResponse
QString stdErr;
};
QWORKBENCH_UTILS_EXPORT QDebug operator<<(QDebug str, const SynchronousProcessResponse &);
QTCREATOR_UTILS_EXPORT QDebug operator<<(QDebug str, const SynchronousProcessResponse &);
/* SynchronousProcess: Runs a synchronous process in its own event loop
* that blocks only user input events. Thus, it allows for the gui to
@@ -85,7 +85,7 @@ QWORKBENCH_UTILS_EXPORT QDebug operator<<(QDebug str, const SynchronousProcessRe
* stdOutBufferedSignalsEnabled()/setStdErrBufferedSignalsEnabled().
* They would typically be used for log windows. */
class QWORKBENCH_UTILS_EXPORT SynchronousProcess : public QObject
class QTCREATOR_UTILS_EXPORT SynchronousProcess : public QObject
{
Q_OBJECT
public: