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

View file

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

View file

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

View file

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