diff options
author | François Andriot <albator78@libertysurf.fr> | 2014-10-04 11:03:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-10-04 11:03:56 +0900 |
commit | c21f94f7ec40824f2ce209234bc0d95c38d49288 (patch) | |
tree | 719c1175c20f982f49f41a03f12092b5726673e5 /kommander/editor/formwindow.cpp | |
parent | 76c59a33842975a2b430454348ce98a05192b6af (diff) | |
download | tdewebdev-c21f94f7ec40824f2ce209234bc0d95c38d49288.tar.gz tdewebdev-c21f94f7ec40824f2ce209234bc0d95c38d49288.zip |
Fixed incorrect renamed strings. This resolves bug 2138.
Diffstat (limited to 'kommander/editor/formwindow.cpp')
-rw-r--r-- | kommander/editor/formwindow.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kommander/editor/formwindow.cpp b/kommander/editor/formwindow.cpp index a8263295..70796291 100644 --- a/kommander/editor/formwindow.cpp +++ b/kommander/editor/formwindow.cpp @@ -1906,7 +1906,7 @@ void FormWindow::selectAll() void FormWindow::layoutHorizontal() { TQWidgetList widgets(selectedWidgets()); - LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay OutQt::Horizontally"), + LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay Out Horizontally"), this, mainContainer(), 0, widgets); clearSelection(false); commandHistory()->addCommand(cmd); @@ -1916,7 +1916,7 @@ void FormWindow::layoutHorizontal() void FormWindow::layoutVertical() { TQWidgetList widgets(selectedWidgets()); - LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay OutQt::Vertically"), + LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay Out Vertically"), this, mainContainer(), 0, widgets); clearSelection(false); commandHistory()->addCommand(cmd); @@ -1927,7 +1927,7 @@ void FormWindow::layoutHorizontalSplit() { TQWidgetList widgets(selectedWidgets()); LayoutHorizontalSplitCommand *cmd = - new LayoutHorizontalSplitCommand(i18n("Lay OutQt::Horizontally (in splitter)"), + new LayoutHorizontalSplitCommand(i18n("Lay Out Horizontally (in splitter)"), this, mainContainer(), 0, widgets); clearSelection(false); commandHistory()->addCommand(cmd); @@ -1938,7 +1938,7 @@ void FormWindow::layoutVerticalSplit() { TQWidgetList widgets(selectedWidgets()); LayoutVerticalSplitCommand *cmd = - new LayoutVerticalSplitCommand(i18n("Lay OutQt::Vertically (in splitter)"), + new LayoutVerticalSplitCommand(i18n("Lay Out Vertically (in splitter)"), this, mainContainer(), 0, widgets); clearSelection(false); commandHistory()->addCommand(cmd); @@ -1972,7 +1972,7 @@ void FormWindow::layoutHorizontalContainer(TQWidget * w) ((TQWidget *) o)->isVisibleTo(this) && insertedWidgets.find((TQWidget *) o)) widgets.append((TQWidget *) o); } - LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay Out ChildrenQt::Horizontally"), + LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay Out Children Horizontally"), this, mainContainer(), w, widgets); clearSelection(false); commandHistory()->addCommand(cmd); @@ -1993,7 +1993,7 @@ void FormWindow::layoutVerticalContainer(TQWidget * w) ((TQWidget *) o)->isVisibleTo(this) && insertedWidgets.find((TQWidget *) o)) widgets.append((TQWidget *) o); } - LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay Out ChildrenQt::Vertically"), + LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay Out Children Vertically"), this, mainContainer(), w, widgets); clearSelection(false); commandHistory()->addCommand(cmd); |