By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2138
Collapse All | Expand All

(-)a/kommander/editor/connectioneditor.ui (-2 / +2 lines)
Lines 116-122 Link Here
116
                <cstring>slotBox</cstring>
116
                <cstring>slotBox</cstring>
117
            </property>
117
            </property>
118
            <property name="whatsThis" stdset="0">
118
            <property name="whatsThis" stdset="0">
119
                <string>&lt;b&gt;A list of Q_SLOTS for the receiver.&lt;/b&gt;&lt;p&gt;The Q_SLOTS that are displayed are only those which have arguments that correspond with the arguments of the signal that is currently selected in the Signal-list.&lt;/b&gt;</string>
119
                <string>&lt;b&gt;A list of slots for the receiver.&lt;/b&gt;&lt;p&gt;The slots that are displayed are only those which have arguments that correspond with the arguments of the signal that is currently selected in the Signal-list.&lt;/b&gt;</string>
120
            </property>
120
            </property>
121
        </widget>
121
        </widget>
122
        <widget class="TDEListBox" row="1" column="0">
122
        <widget class="TDEListBox" row="1" column="0">
Lines 124-130 Link Here
124
                <cstring>signalBox</cstring>
124
                <cstring>signalBox</cstring>
125
            </property>
125
            </property>
126
            <property name="whatsThis" stdset="0">
126
            <property name="whatsThis" stdset="0">
127
                <string>Displays the list of Q_SIGNALS that the widget emits.</string>
127
                <string>Displays the list of signals that the widget emits.</string>
128
            </property>
128
            </property>
129
        </widget>
129
        </widget>
130
        <widget class="TQLayoutWidget" row="0" column="0">
130
        <widget class="TQLayoutWidget" row="0" column="0">
(-)a/kommander/editor/formwindow.cpp (-6 / +6 lines)
Lines 1906-1912 void FormWindow::selectAll() Link Here
1906
void FormWindow::layoutHorizontal()
1906
void FormWindow::layoutHorizontal()
1907
{
1907
{
1908
  TQWidgetList widgets(selectedWidgets());
1908
  TQWidgetList widgets(selectedWidgets());
1909
  LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay OutQt::Horizontally"),
1909
  LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay Out Horizontally"),
1910
      this, mainContainer(), 0, widgets);
1910
      this, mainContainer(), 0, widgets);
1911
  clearSelection(false);
1911
  clearSelection(false);
1912
  commandHistory()->addCommand(cmd);
1912
  commandHistory()->addCommand(cmd);
Lines 1916-1922 void FormWindow::layoutHorizontal() Link Here
1916
void FormWindow::layoutVertical()
1916
void FormWindow::layoutVertical()
1917
{
1917
{
1918
  TQWidgetList widgets(selectedWidgets());
1918
  TQWidgetList widgets(selectedWidgets());
1919
  LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay OutQt::Vertically"),
1919
  LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay Out Vertically"),
1920
      this, mainContainer(), 0, widgets);
1920
      this, mainContainer(), 0, widgets);
1921
  clearSelection(false);
1921
  clearSelection(false);
1922
  commandHistory()->addCommand(cmd);
1922
  commandHistory()->addCommand(cmd);
Lines 1927-1933 void FormWindow::layoutHorizontalSplit() Link Here
1927
{
1927
{
1928
  TQWidgetList widgets(selectedWidgets());
1928
  TQWidgetList widgets(selectedWidgets());
1929
  LayoutHorizontalSplitCommand *cmd =
1929
  LayoutHorizontalSplitCommand *cmd =
1930
      new LayoutHorizontalSplitCommand(i18n("Lay OutQt::Horizontally (in splitter)"),
1930
      new LayoutHorizontalSplitCommand(i18n("Lay Out Horizontally (in splitter)"),
1931
      this, mainContainer(), 0, widgets);
1931
      this, mainContainer(), 0, widgets);
1932
  clearSelection(false);
1932
  clearSelection(false);
1933
  commandHistory()->addCommand(cmd);
1933
  commandHistory()->addCommand(cmd);
Lines 1938-1944 void FormWindow::layoutVerticalSplit() Link Here
1938
{
1938
{
1939
  TQWidgetList widgets(selectedWidgets());
1939
  TQWidgetList widgets(selectedWidgets());
1940
  LayoutVerticalSplitCommand *cmd =
1940
  LayoutVerticalSplitCommand *cmd =
1941
      new LayoutVerticalSplitCommand(i18n("Lay OutQt::Vertically (in splitter)"),
1941
      new LayoutVerticalSplitCommand(i18n("Lay Out Vertically (in splitter)"),
1942
      this, mainContainer(), 0, widgets);
1942
      this, mainContainer(), 0, widgets);
1943
  clearSelection(false);
1943
  clearSelection(false);
1944
  commandHistory()->addCommand(cmd);
1944
  commandHistory()->addCommand(cmd);
Lines 1972-1978 void FormWindow::layoutHorizontalContainer(TQWidget * w) Link Here
1972
        ((TQWidget *) o)->isVisibleTo(this) && insertedWidgets.find((TQWidget *) o))
1972
        ((TQWidget *) o)->isVisibleTo(this) && insertedWidgets.find((TQWidget *) o))
1973
      widgets.append((TQWidget *) o);
1973
      widgets.append((TQWidget *) o);
1974
  }
1974
  }
1975
  LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay Out ChildrenQt::Horizontally"),
1975
  LayoutHorizontalCommand *cmd = new LayoutHorizontalCommand(i18n("Lay Out Children Horizontally"),
1976
      this, mainContainer(), w, widgets);
1976
      this, mainContainer(), w, widgets);
1977
  clearSelection(false);
1977
  clearSelection(false);
1978
  commandHistory()->addCommand(cmd);
1978
  commandHistory()->addCommand(cmd);
Lines 1993-1999 void FormWindow::layoutVerticalContainer(TQWidget * w) Link Here
1993
        ((TQWidget *) o)->isVisibleTo(this) && insertedWidgets.find((TQWidget *) o))
1993
        ((TQWidget *) o)->isVisibleTo(this) && insertedWidgets.find((TQWidget *) o))
1994
      widgets.append((TQWidget *) o);
1994
      widgets.append((TQWidget *) o);
1995
  }
1995
  }
1996
  LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay Out ChildrenQt::Vertically"),
1996
  LayoutVerticalCommand *cmd = new LayoutVerticalCommand(i18n("Lay Out Children Vertically"),
1997
      this, mainContainer(), w, widgets);
1997
      this, mainContainer(), w, widgets);
1998
  clearSelection(false);
1998
  clearSelection(false);
1999
  commandHistory()->addCommand(cmd);
1999
  commandHistory()->addCommand(cmd);
(-)a/kommander/editor/mainwindowactions.cpp (-8 / +8 lines)
Lines 207-222 void MainWindow::setupLayoutActions() Link Here
207
  actionEditAdjustSize->setWhatsThis(whatsThisFrom("Layout|Adjust Size"));
207
  actionEditAdjustSize->setWhatsThis(whatsThisFrom("Layout|Adjust Size"));
208
  actionEditAdjustSize->setEnabled(false);
208
  actionEditAdjustSize->setEnabled(false);
209
209
210
  actionEditHLayout = new TDEAction(i18n("Lay OutQt::Horizontally"), createIconSet("edithlayout.xpm"),
210
  actionEditHLayout = new TDEAction(i18n("Lay Out Horizontally"), createIconSet("edithlayout.xpm"),
211
                                  CTRL + Key_H, TQT_TQOBJECT(this), TQT_SLOT(editLayoutHorizontal()), actionCollection(), "edit_layout_h");
211
                                  CTRL + Key_H, TQT_TQOBJECT(this), TQT_SLOT(editLayoutHorizontal()), actionCollection(), "edit_layout_h");
212
  actionEditHLayout->setToolTip(i18n("Lays out the selected widgets horizontally"));
212
  actionEditHLayout->setToolTip(i18n("Lays out the selected widgets horizontally"));
213
  actionEditHLayout->setWhatsThis(whatsThisFrom("Layout|Lay OutQt::Horizontally"));
213
  actionEditHLayout->setWhatsThis(whatsThisFrom("Layout|Lay Out Horizontally"));
214
  actionEditHLayout->setEnabled(false);
214
  actionEditHLayout->setEnabled(false);
215
215
216
  actionEditVLayout = new TDEAction(i18n("Lay OutQt::Vertically"), createIconSet("editvlayout.xpm"),
216
  actionEditVLayout = new TDEAction(i18n("Lay Out Vertically"), createIconSet("editvlayout.xpm"),
217
                                  CTRL + Key_L, TQT_TQOBJECT(this), TQT_SLOT(editLayoutVertical()), actionCollection(), "edit_layout_v");
217
                                  CTRL + Key_L, TQT_TQOBJECT(this), TQT_SLOT(editLayoutVertical()), actionCollection(), "edit_layout_v");
218
  actionEditVLayout->setToolTip(i18n("Lays out the selected widgets vertically"));
218
  actionEditVLayout->setToolTip(i18n("Lays out the selected widgets vertically"));
219
  actionEditVLayout->setWhatsThis(whatsThisFrom("Layout|Lay OutQt::Vertically"));
219
  actionEditVLayout->setWhatsThis(whatsThisFrom("Layout|Lay Out Vertically"));
220
  actionEditVLayout->setEnabled(false);
220
  actionEditVLayout->setEnabled(false);
221
221
222
  actionEditGridLayout = new TDEAction(i18n("Lay Out in a Grid"), createIconSet("editgrid.xpm"),
222
  actionEditGridLayout = new TDEAction(i18n("Lay Out in a Grid"), createIconSet("editgrid.xpm"),
Lines 225-242 void MainWindow::setupLayoutActions() Link Here
225
  actionEditGridLayout->setWhatsThis(whatsThisFrom("Layout|Lay Out in a Grid"));
225
  actionEditGridLayout->setWhatsThis(whatsThisFrom("Layout|Lay Out in a Grid"));
226
  actionEditGridLayout->setEnabled(false);
226
  actionEditGridLayout->setEnabled(false);
227
227
228
  actionEditSplitHorizontal = new TDEAction(i18n("Lay OutQt::Horizontally in Splitter"), createIconSet("editvlayoutsplit.xpm"),
228
  actionEditSplitHorizontal = new TDEAction(i18n("Lay Out Horizontally in Splitter"), createIconSet("editvlayoutsplit.xpm"),
229
                                          TDEShortcut::null(), TQT_TQOBJECT(this), TQT_SLOT(editLayoutHorizontalSplit()), actionCollection(),
229
                                          TDEShortcut::null(), TQT_TQOBJECT(this), TQT_SLOT(editLayoutHorizontalSplit()), actionCollection(),
230
                                          "edit_split_h");
230
                                          "edit_split_h");
231
  actionEditSplitHorizontal->setToolTip(i18n("Lays out the selected widgets horizontally in a splitter"));
231
  actionEditSplitHorizontal->setToolTip(i18n("Lays out the selected widgets horizontally in a splitter"));
232
  actionEditSplitHorizontal->setWhatsThis(whatsThisFrom("Layout|Lay OutQt::Horizontally in Splitter"));
232
  actionEditSplitHorizontal->setWhatsThis(whatsThisFrom("Layout|Lay Out Horizontally in Splitter"));
233
  actionEditSplitHorizontal->setEnabled(false);
233
  actionEditSplitHorizontal->setEnabled(false);
234
234
235
  actionEditSplitVertical = new TDEAction(i18n("Lay OutQt::Vertically in Splitter"), createIconSet("edithlayoutsplit.xpm"),
235
  actionEditSplitVertical = new TDEAction(i18n("Lay Out Vertically in Splitter"), createIconSet("edithlayoutsplit.xpm"),
236
                                        TDEShortcut::null(), TQT_TQOBJECT(this), TQT_SLOT(editLayoutVerticalSplit()), actionCollection(),
236
                                        TDEShortcut::null(), TQT_TQOBJECT(this), TQT_SLOT(editLayoutVerticalSplit()), actionCollection(),
237
                                        "edit_split_v");
237
                                        "edit_split_v");
238
  actionEditSplitVertical->setToolTip(i18n("Lays out the selected widgets vertically in a splitter"));
238
  actionEditSplitVertical->setToolTip(i18n("Lays out the selected widgets vertically in a splitter"));
239
  actionEditSplitVertical->setWhatsThis(whatsThisFrom("Layout|Lay OutQt::Vertically (in Splitter)"));
239
  actionEditSplitVertical->setWhatsThis(whatsThisFrom("Layout|Lay Out Vertically (in Splitter)"));
240
  actionEditSplitVertical->setEnabled(false);
240
  actionEditSplitVertical->setEnabled(false);
241
241
242
  actionEditBreakLayout = new TDEAction(i18n("Break Layout"), createIconSet("editbreaklayout.xpm"),
242
  actionEditBreakLayout = new TDEAction(i18n("Break Layout"), createIconSet("editbreaklayout.xpm"),
(-)a/kommander/editor/propertyeditor.cpp (-4 / +4 lines)
Lines 2271-2281 TQComboBox *PropertyCursorItem::combo() Link Here
2271
2271
2272
    cur = TQBitmap(sizev_width, sizev_height, sizev_bits, true);
2272
    cur = TQBitmap(sizev_width, sizev_height, sizev_bits, true);
2273
    cur.setMask( cur );
2273
    cur.setMask( cur );
2274
    comb->insertItem( cur, i18n("SizeQt::Vertical"), TQObject::SizeVerCursor );
2274
    comb->insertItem( cur, i18n("Size Vertical"), TQObject::SizeVerCursor );
2275
2275
2276
    cur = TQBitmap(sizeh_width, sizeh_height, sizeh_bits, true);
2276
    cur = TQBitmap(sizeh_width, sizeh_height, sizeh_bits, true);
2277
    cur.setMask( cur );
2277
    cur.setMask( cur );
2278
    comb->insertItem( cur, i18n("SizeQt::Horizontal"), TQObject::SizeHorCursor );
2278
    comb->insertItem( cur, i18n("Size Horizontal"), TQObject::SizeHorCursor );
2279
2279
2280
    cur = TQBitmap(sizef_width, sizef_height, sizef_bits, true);
2280
    cur = TQBitmap(sizef_width, sizef_height, sizef_bits, true);
2281
    cur.setMask( cur );
2281
    cur.setMask( cur );
Lines 2295-2305 TQComboBox *PropertyCursorItem::combo() Link Here
2295
2295
2296
    cur = TQBitmap(vsplit_width, vsplit_height, vsplit_bits, true);
2296
    cur = TQBitmap(vsplit_width, vsplit_height, vsplit_bits, true);
2297
    cur.setMask( cur );
2297
    cur.setMask( cur );
2298
    comb->insertItem( cur, i18n("SplitQt::Vertical"), TQObject::SplitVCursor );
2298
    comb->insertItem( cur, i18n("Split Vertical"), TQObject::SplitVCursor );
2299
2299
2300
    cur = TQBitmap(hsplit_width, hsplit_height, hsplit_bits, true);
2300
    cur = TQBitmap(hsplit_width, hsplit_height, hsplit_bits, true);
2301
    cur.setMask( cur );
2301
    cur.setMask( cur );
2302
    comb->insertItem( cur, i18n("SplitQt::Horizontal"), TQObject::SplitHCursor );
2302
    comb->insertItem( cur, i18n("Split Horizontal"), TQObject::SplitHCursor );
2303
2303
2304
    cur = TQBitmap(hand_width, hand_height, hand_bits, true);
2304
    cur = TQBitmap(hand_width, hand_height, hand_bits, true);
2305
    cur.setMask( cur );
2305
    cur.setMask( cur );

Return to bug 2138