diff options
| author | Rick Xing <[email protected]> | 2008-12-09 06:59:31 +0000 |
|---|---|---|
| committer | Rick Xing <[email protected]> | 2008-12-09 06:59:31 +0000 |
| commit | 2817e4a2adc2ebd7541ddced1925aa61e9142770 (patch) | |
| tree | 828f6ba2b4516edbf99a4341ea69328165fe40a6 | |
| parent | e58aadd3e59df7d813ba6d4a92519a519adbe2c3 (diff) | |
Just EBN fixes
svn path=/trunk/KDE/kdebase/apps/; revision=894687
| -rw-r--r-- | src/commenteditwidget.cpp | 6 | ||||
| -rw-r--r-- | src/tagcloud/tagcloud.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/commenteditwidget.cpp b/src/commenteditwidget.cpp index e1069a929..a55adbea4 100644 --- a/src/commenteditwidget.cpp +++ b/src/commenteditwidget.cpp @@ -19,7 +19,6 @@ #include "commenteditwidget.h" -#include <QtGui/QTextEdit> #include <QtGui/QToolButton> #include <QtGui/QVBoxLayout> #include <QtCore/QEventLoop> @@ -33,6 +32,7 @@ #include <KDialog> #include <KLocale> #include <KDebug> +#include <KTextEdit> class CommentEditWidget::Private @@ -45,7 +45,7 @@ public: QEventLoop* eventLoop; bool success; - QTextEdit* textEdit; + KTextEdit* textEdit; QToolButton* buttonSave; QToolButton* buttonCancel; @@ -112,7 +112,7 @@ CommentEditWidget::CommentEditWidget( QWidget* parent ) setFrameStyle( QFrame::Box|QFrame::Plain ); setWindowFlags( Qt::Popup ); - d->textEdit = new QTextEdit( this ); + d->textEdit = new KTextEdit( this ); d->textEdit->installEventFilter( this ); QVBoxLayout* layout = new QVBoxLayout( this ); layout->setMargin( 0 ); diff --git a/src/tagcloud/tagcloud.cpp b/src/tagcloud/tagcloud.cpp index 2afd62e3b..0074d1796 100644 --- a/src/tagcloud/tagcloud.cpp +++ b/src/tagcloud/tagcloud.cpp @@ -145,7 +145,7 @@ public: // The resource whose tags we are showing // invalid if we show all tags or a selection - QUrl resource; + KUrl resource; bool showAllTags; // the actual nodes |
