diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:05:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:05:43 -0600 |
commit | fb3718a55f355cd22f9eb9fa4e89cd3b84b8c9ca (patch) | |
tree | 5785d2ccbdfbe2f44d02fec75b4a51f5079a4b62 /src/gui/editors/matrix/MatrixPainter.cpp | |
parent | acf699af8244896500e654cccdc8aae7e5b545db (diff) | |
download | rosegarden-fb3718a55f355cd22f9eb9fa4e89cd3b84b8c9ca.tar.gz rosegarden-fb3718a55f355cd22f9eb9fa4e89cd3b84b8c9ca.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/gui/editors/matrix/MatrixPainter.cpp')
-rw-r--r-- | src/gui/editors/matrix/MatrixPainter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/editors/matrix/MatrixPainter.cpp b/src/gui/editors/matrix/MatrixPainter.cpp index 18a4822..a6b0a15 100644 --- a/src/gui/editors/matrix/MatrixPainter.cpp +++ b/src/gui/editors/matrix/MatrixPainter.cpp @@ -62,21 +62,21 @@ MatrixPainter::MatrixPainter(MatrixView* parent) TQCanvasPixmap pixmap(pixmapDir + "/toolbar/select.xpm"); TQIconSet icon = TQIconSet(pixmap); - new KAction(i18n("Switch to Select Tool"), icon, 0, this, + new TDEAction(i18n("Switch to Select Tool"), icon, 0, this, TQT_SLOT(slotSelectSelected()), actionCollection(), "select"); - new KAction(i18n("Switch to Erase Tool"), "eraser", 0, this, + new TDEAction(i18n("Switch to Erase Tool"), "eraser", 0, this, TQT_SLOT(slotEraseSelected()), actionCollection(), "erase"); - new KAction(i18n("Switch to Move Tool"), "move", 0, this, + new TDEAction(i18n("Switch to Move Tool"), "move", 0, this, TQT_SLOT(slotMoveSelected()), actionCollection(), "move"); pixmap.load(pixmapDir + "/toolbar/resize.xpm"); icon = TQIconSet(pixmap); - new KAction(i18n("Switch to Resize Tool"), icon, 0, this, + new TDEAction(i18n("Switch to Resize Tool"), icon, 0, this, TQT_SLOT(slotResizeSelected()), actionCollection(), "resize"); |