From: fred Date: Sun, 24 Mar 2002 19:39:32 +0000 (+0000) Subject: lilypond-0.0.52 X-Git-Tag: release/1.5.59~4944 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1fbece82a51bc1ab3d3d2d98f271bc01d9163306;p=lilypond.git lilypond-0.0.52 --- diff --git a/lily/command-request.cc b/lily/command-request.cc index 55ccf54c27..e4334f1d69 100644 --- a/lily/command-request.cc +++ b/lily/command-request.cc @@ -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 diff --git a/lily/include/command-request.hh b/lily/include/command-request.hh index 3c257b67f1..9cf88dcafc 100644 --- a/lily/include/command-request.hh +++ b/lily/include/command-request.hh @@ -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); };