Further cleanup to prepare the move.

svn path=/trunk/KDE/kdebase/apps/; revision=649519
This commit is contained in:
Kevin Ottens 2007-04-02 19:30:57 +00:00
parent 03713b0ab4
commit 4eec2a77cf
4 changed files with 15 additions and 15 deletions

View file

@ -66,7 +66,7 @@ public:
/** @see QWidget::sizeHint() */
virtual QSize sizeHint() const;
signals:
Q_SIGNALS:
/**
* Is send when a bookmark has been activated by the user.
* @param url URL of the selected place.
@ -80,7 +80,7 @@ protected:
*/
virtual void paintEvent(QPaintEvent* event);
private slots:
private Q_SLOTS:
/**
* Updates the selected index and the icon to the bookmark
* which is indicated by the triggered action \a action.

View file

@ -30,20 +30,20 @@ class KProtocolCombo : public KUrlNavigatorButton
{
Q_OBJECT
public:
explicit KProtocolCombo(const QString& protocol, KUrlNavigator* parent = 0);
public:
explicit KProtocolCombo(const QString& protocol, KUrlNavigator* parent = 0);
QString currentProtocol() const;
QString currentProtocol() const;
public slots:
void setProtocol(const QString& protocol);
void setProtocol(int index);
public Q_SLOTS:
void setProtocol(const QString& protocol);
void setProtocol(int index);
signals:
void activated(const QString& protocol);
Q_SIGNALS:
void activated(const QString& protocol);
private:
QStringList m_protocols;
private:
QStringList m_protocols;
};
#endif

View file

@ -145,7 +145,7 @@ public:
void dropUrls(const KUrl::List& urls,
const KUrl& destination);
public slots:
public Q_SLOTS:
/**
* Sets the current active URL.
* The signals UrlNavigator::urlChanged and UrlNavigator::historyChanged
@ -165,7 +165,7 @@ public slots:
*/
void storeContentsPosition(int x, int y);
signals:
Q_SIGNALS:
/**
* Is emitted, if the URL navigator has been activated by
* a user interaction.

View file

@ -64,7 +64,7 @@ protected:
virtual void dragEnterEvent(QDragEnterEvent* event);
virtual void dragLeaveEvent(QDragLeaveEvent* event);
private slots:
private Q_SLOTS:
void updateNavigatorUrl();
void startPopupDelay();
void stopPopupDelay();