diff --git a/doomsday/libshell/include/de/shell/abstractlineeditor.h b/doomsday/libshell/include/de/shell/abstractlineeditor.h index 38d5717f91..9c9e2a3795 100644 --- a/doomsday/libshell/include/de/shell/abstractlineeditor.h +++ b/doomsday/libshell/include/de/shell/abstractlineeditor.h @@ -25,9 +25,6 @@ #include namespace de { - -class Rule; - namespace shell { class Lexicon; diff --git a/doomsday/libshell/include/de/shell/lineeditwidget.h b/doomsday/libshell/include/de/shell/lineeditwidget.h index 5c6386c2e8..8cd21dd9c0 100644 --- a/doomsday/libshell/include/de/shell/lineeditwidget.h +++ b/doomsday/libshell/include/de/shell/lineeditwidget.h @@ -32,7 +32,7 @@ class Lexicon; * Widget for word-wrapped text editing. * * The widget adjusts its height automatically to fit to the full contents of - * the edited, wrapped line. + * the edited, wrapped lines. */ class LIBSHELL_PUBLIC LineEditWidget : public TextWidget, public AbstractLineEditor { diff --git a/doomsday/libshell/src/abstractlineeditor.cpp b/doomsday/libshell/src/abstractlineeditor.cpp index aaf136776a..cdc49dcf14 100644 --- a/doomsday/libshell/src/abstractlineeditor.cpp +++ b/doomsday/libshell/src/abstractlineeditor.cpp @@ -397,7 +397,7 @@ Vector2i AbstractLineEditor::lineCursorPos() const return d->lineCursorPos(); } -bool shell::AbstractLineEditor::isSuggestingCompletion() const +bool AbstractLineEditor::isSuggestingCompletion() const { return d->suggestingCompletion(); }