Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 417763
Collapse All | Expand All

(-)a/ncurses-5.9/c++/cursesf.h (-2 / +2 lines)
Lines 677-683 protected: Link Here
677
  }
677
  }
678
678
679
public:
679
public:
680
  NCursesUserForm (NCursesFormField Fields[],
680
  NCursesUserForm (NCursesFormField* Fields[],
681
		   const T* p_UserData = STATIC_CAST(T*)(0),
681
		   const T* p_UserData = STATIC_CAST(T*)(0),
682
		   bool with_frame=FALSE,
682
		   bool with_frame=FALSE,
683
		   bool autoDelete_Fields=FALSE)
683
		   bool autoDelete_Fields=FALSE)
Lines 686-692 public: Link Here
686
	set_user (const_cast<void *>(p_UserData));
686
	set_user (const_cast<void *>(p_UserData));
687
  };
687
  };
688
688
689
  NCursesUserForm (NCursesFormField Fields[],
689
  NCursesUserForm (NCursesFormField* Fields[],
690
		   int nlines,
690
		   int nlines,
691
		   int ncols,
691
		   int ncols,
692
		   int begin_y = 0,
692
		   int begin_y = 0,
(-)a/ncurses-5.9/c++/cursesm.h (-2 / +2 lines)
Lines 635-641 protected: Link Here
635
  }
635
  }
636
636
637
public:
637
public:
638
  NCursesUserMenu (NCursesMenuItem Items[],
638
  NCursesUserMenu (NCursesMenuItem* Items[],
639
		   const T* p_UserData = STATIC_CAST(T*)(0),
639
		   const T* p_UserData = STATIC_CAST(T*)(0),
640
		   bool with_frame=FALSE,
640
		   bool with_frame=FALSE,
641
		   bool autoDelete_Items=FALSE)
641
		   bool autoDelete_Items=FALSE)
Lines 644-650 public: Link Here
644
	set_user (const_cast<void *>(p_UserData));
644
	set_user (const_cast<void *>(p_UserData));
645
  };
645
  };
646
646
647
  NCursesUserMenu (NCursesMenuItem Items[],
647
  NCursesUserMenu (NCursesMenuItem* Items[],
648
		   int nlines,
648
		   int nlines,
649
		   int ncols,
649
		   int ncols,
650
		   int begin_y = 0,
650
		   int begin_y = 0,

Return to bug 417763