]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.45
authorfred <fred>
Sun, 24 Mar 2002 20:08:29 +0000 (20:08 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:08:29 +0000 (20:08 +0000)
debian/info.ex [deleted file]
debian/menu.ex [deleted file]
lily/elem-group-item.cc [deleted file]
lily/include/elem-group-item.hh [deleted file]

diff --git a/debian/info.ex b/debian/info.ex
deleted file mode 100644 (file)
index 5a311f0..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-# This is a configuration files for installing a .info menu
-# The Description to be placed into the directory
-DESCR="Description"
-
-# The section this info file should be placed in (Regexp) followed by
-# the new section name to be created if the Regexp does not match
-# (Optional. If not given the .info will be appended to the directory)
-#SECTION_MATCH="Regexp"
-#SECTION_NAME="New Section Name"
-
-# The file referred to from the Info directory
-FILE=lilypond.info
-
-# Optional. The files to be copied to /usr/info
-#FILES=*.info
diff --git a/debian/menu.ex b/debian/menu.ex
deleted file mode 100644 (file)
index 179992f..0000000
+++ /dev/null
@@ -1 +0,0 @@
-text Apps/Misc lilypond none "lilypond Description" /usr/bin/lilypond
diff --git a/lily/elem-group-item.cc b/lily/elem-group-item.cc
deleted file mode 100644 (file)
index 9209796..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
-  elem-group-item.cc -- implement Horizontal_vertical_group_item
-
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-
-#include "elem-group-item.hh"
-#include "p-col.hh"
-
-void
-Horizontal_vertical_group_item::do_print() const
-{
-  Horizontal_vertical_group_element::do_print();
-}
-
-IMPLEMENT_IS_TYPE_B2(Horizontal_vertical_group_item,Horizontal_vertical_group_element,Item);
diff --git a/lily/include/elem-group-item.hh b/lily/include/elem-group-item.hh
deleted file mode 100644 (file)
index ab79afe..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
-  elem-group-item.hh -- declare Horizontal_vertical_group_item
-  
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-
-#ifndef ELEM_GROUP_ITEM_HH
-#define ELEM_GROUP_ITEM_HH
-
-#include "axis-group-item.hh"
-#include "elem-group.hh"
-
-
-/**
-  Treat a collection of items as a unity
- */
-class Horizontal_vertical_group_item  : public Axis_group_item, public Horizontal_vertical_group_element {
-protected:
-  virtual void do_print() const;
-  virtual void remove_all() { Horizontal_vertical_group_element::remove_all (); }
-  virtual void do_unlink () { Horizontal_vertical_group_element::do_unlink (); }
-  SCORE_ELEM_CLONE(Horizontal_vertical_group_item);
-public:
-  virtual void add_element (Graphical_element*e) { Horizontal_vertical_group_element::add_element (e); }
-  virtual void remove_element (Graphical_element*e) { Horizontal_vertical_group_element::remove_element (e); }
-
-  DECLARE_MY_RUNTIME_TYPEINFO;
-};
-
-#endif // ELEM_GROUP_ITEM_HH