remove unnecessary QCA_EXPORT usage

svn path=/trunk/kdesupport/qca/; revision=605537
This commit is contained in:
Justin Karneges 2006-11-17 05:28:44 +00:00
parent a60b281780
commit 77c31f750c
2 changed files with 4 additions and 4 deletions

View File

@ -240,8 +240,8 @@ namespace QCA
{
Q_OBJECT
public:
QCA_EXPORT static QSecureArray getHidden(const QString &promptStr);
QCA_EXPORT static void waitForEnter();
static QSecureArray getHidden(const QString &promptStr);
static void waitForEnter();
private:
class Private;

View File

@ -689,7 +689,7 @@ ConsolePrompt::~ConsolePrompt()
delete d;
}
QCA_EXPORT QSecureArray ConsolePrompt::getHidden(const QString &promptStr)
QSecureArray ConsolePrompt::getHidden(const QString &promptStr)
{
printf("%s: ", qPrintable(promptStr));
fflush(stdout);
@ -699,7 +699,7 @@ QCA_EXPORT QSecureArray ConsolePrompt::getHidden(const QString &promptStr)
return p.d->result;
}
QCA_EXPORT void ConsolePrompt::waitForEnter()
void ConsolePrompt::waitForEnter()
{
ConsolePrompt p;
p.d->start(true);