Skip to content

Commit

Permalink
Rename MMBaseTextInput to MMBaseSingleLineInput
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasMizera committed Apr 17, 2024
1 parent 66a9e2c commit 67f3d69
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/qml/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ set(MM_QML
components/MMToolbar.qml
components/MMToolbarButton.qml
components/private/MMBaseInput.qml
components/private/MMBaseTextInput.qml
components/private/MMBaseSingleLineInput.qml
components/private/MMToolbarLongButton.qml
components/private/MMToolbarShortButton.qml
dialogs/MMCloseAccountDialog.qml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import QtQuick.Layouts
import QtQuick.Controls.Basic

/**
* MMBaseTextInput serves as a base class for all inputs that can benefit from
* MMBaseSingleLineInput serves as a base class for all inputs that can benefit from
* predefined textfield and/or left/right icons (actions).
*
* Private class, do not use standalone in the app.
Expand Down
4 changes: 2 additions & 2 deletions app/qml/inputs/MMTextInput.qml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import "../components/private" as MMPrivateComponents
* Common text input to use in the app.
* Disabled state can be achieved by setting `enabled: false`.
*
* See MMBaseTextInput for more properties.
* See MMBaseSingleLineInput for more properties.
*/

MMPrivateComponents.MMBaseTextInput {
MMPrivateComponents.MMBaseSingleLineInput {
id: root

property bool showClearIcon: true
Expand Down
2 changes: 1 addition & 1 deletion gallery/qml.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<file>../app/qml/components/MMBadge.qml</file>
<file>../app/qml/components/MMToolbar.qml</file>
<file>../app/qml/components/private/MMBaseInput.qml</file>
<file>../app/qml/components/private/MMBaseTextInput.qml</file>
<file>../app/qml/components/private/MMBaseSingleLineInput.qml</file>
<file>../app/qml/components/private/MMToolbarShortButton.qml</file>
<file>../app/qml/components/private/MMToolbarLongButton.qml</file>
<file>../app/qml/components/MMListDelegate.qml</file>
Expand Down

0 comments on commit 67f3d69

Please sign in to comment.