]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.52
authorfred <fred>
Sun, 24 Mar 2002 19:39:32 +0000 (19:39 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:39:32 +0000 (19:39 +0000)
lily/command-request.cc
lily/include/command-request.hh

index 55ccf54c27f25d015a292e71c372e205af8f31a5..e4334f1d69a3d03f84740df617544768806d9640 100644 (file)
@@ -88,15 +88,10 @@ void
 Group_feature_req::do_print() const
 {
 #ifndef NPRINT
-    mtor << "stemdir " << stemdir_i_;
+    mtor << type_str_ << "=" << value_str_;
 #endif
 }
 
-Group_feature_req::Group_feature_req()
-{
-    stemdir_i_ = 0;
-}
-
 IMPLEMENT_STATIC_NAME(Group_change_req);
 
 void
index 3c257b67f193684103fe4514a43d29cb40decc52..9cf88dcafc3efd980f3bec14ff495564d3f3a610 100644 (file)
@@ -108,8 +108,9 @@ public:
 
 class Group_feature_req  : public Command_req  {
 public:
-    int stemdir_i_;
-    Group_feature_req();
+    String type_str_;
+    String value_str_;
+    
     REQUESTMETHODS(Group_feature_req, groupfeature);
 };