diff options
| author | Werner Schweer <ws.seh.de> | 2006-11-22 17:31:15 +0000 | 
|---|---|---|
| committer | Werner Schweer <ws.seh.de> | 2006-11-22 17:31:15 +0000 | 
| commit | 44cdf7002e70457fa3e5a34afeccb724f750cdca (patch) | |
| tree | 0f15540c8f4002d5bb54ccb9109f7da7e1c65e15 | |
| parent | 81b334998132d11b9fb34275cd75ccd6bc2fd4f2 (diff) | |
updates
| -rw-r--r-- | muse/TODO | 1 | ||||
| -rw-r--r-- | muse/awl/tcanvas.cpp | 10 | 
2 files changed, 5 insertions, 6 deletions
| @@ -3,7 +3,6 @@  ----------------------------------------------------------------------------        - dont allow for overlapping parts -      - move shortcuts to Muse() class        - add shortcuts as QAction        - extend Shortcut with ShortcutContext        - extend shortcuts with Help Text, Icons etc. diff --git a/muse/awl/tcanvas.cpp b/muse/awl/tcanvas.cpp index 37f93c64..8c15985b 100644 --- a/muse/awl/tcanvas.cpp +++ b/muse/awl/tcanvas.cpp @@ -1697,19 +1697,19 @@ void TimeCanvas::setCursor()        {        switch(_tool) {              case PencilTool: -                  widget()->setCursor(QCursor(*pencilIcon, 4, 15)); +                  widget()->setCursor(QCursor(QPixmap(":/xpm/pencil.xpm"), 4, 15));                    break;              case RubberTool: -                  widget()->setCursor(QCursor(*deleteIcon, 4, 15)); +                  widget()->setCursor(QCursor(QPixmap(":/xpm/delete.xpm"), 4, 15));                    break;              case GlueTool: -                  widget()->setCursor(QCursor(*glueIcon, 4, 15)); +                  widget()->setCursor(QCursor(QPixmap(":/xpm/glue.xpm"), 4, 15));                    break;              case CutTool: -                  widget()->setCursor(QCursor(*cutIcon, 4, 15)); +                  widget()->setCursor(QCursor(QPixmap(":/xpm/cut.xpm"), 4, 15));                    break;              case MuteTool: -                  widget()->setCursor(QCursor(*editmuteIcon, 4, 15)); +                  widget()->setCursor(QCursor(QPixmap(":/xpm/editmute.xmp"), 4, 15));                    break;              default:                    widget()->setCursor(QCursor(Qt::ArrowCursor)); | 
