summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/widgets/comment.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/widgets/comment.h')
-rw-r--r--attic/muse2-oom/muse2/muse/widgets/comment.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/attic/muse2-oom/muse2/muse/widgets/comment.h b/attic/muse2-oom/muse2/muse/widgets/comment.h
deleted file mode 100644
index 688d7b2f..00000000
--- a/attic/muse2-oom/muse2/muse/widgets/comment.h
+++ /dev/null
@@ -1,53 +0,0 @@
-//=========================================================
-// MusE
-// Linux Music Editor
-// $Id: comment.h,v 1.2 2004/02/08 18:30:00 wschweer Exp $
-// (C) Copyright 2001 Werner Schweer (ws@seh.de)
-//=========================================================
-
-#ifndef __COMMENT_H__
-#define __COMMENT_H__
-
-#include "ui_commentbase.h"
-
-class Xml;
-class Track;
-class QWidget;
-
-//---------------------------------------------------------
-// Comment
-//---------------------------------------------------------
-
-class Comment : public QWidget, public Ui::CommentBase {
- Q_OBJECT
-
- private:
- virtual void setText(const QString& s) = 0;
-
- private slots:
- void textChanged();
-
- public:
- Comment(QWidget* parent);
- };
-
-//---------------------------------------------------------
-// TrackComment
-//---------------------------------------------------------
-
-class TrackComment : public Comment {
- Track* track;
- Q_OBJECT
-
- private:
- virtual void setText(const QString& s);
-
- private slots:
- void songChanged(int);
-
- public:
- TrackComment(Track*, QWidget*);
- };
-
-#endif
-