mirror of
https://github.com/fltk/fltk.git
synced 2026-05-30 21:25:30 +08:00
Some minor doc changes to avoid doxygen warning.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8184 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -286,12 +286,14 @@ void MyWindow::show() {
|
|||||||
}
|
}
|
||||||
\endcode
|
\endcode
|
||||||
|
|
||||||
|
\verbatim
|
||||||
Fl_X *Fl_X::set_xid(Fl_Window*, Window xid)
|
Fl_X *Fl_X::set_xid(Fl_Window*, Window xid)
|
||||||
|
\endverbatim
|
||||||
|
|
||||||
\par
|
\par
|
||||||
Allocate a hidden structure called an Fl_X, put the
|
Allocate a hidden structure called an Fl_X, put the
|
||||||
XID into it, and set a pointer to it from the Fl_Window.
|
XID into it, and set a pointer to it from the Fl_Window.
|
||||||
This causes Fl_Window::shown()to return true.
|
This causes Fl_Window::shown() to return true.
|
||||||
|
|
||||||
void Fl_X::make_xid(Fl_Window*, XVisualInfo* = fl_visual, Colormap = fl_colormap)
|
void Fl_X::make_xid(Fl_Window*, XVisualInfo* = fl_visual, Colormap = fl_colormap)
|
||||||
|
|
||||||
|
|||||||
+12
-1
@@ -15,9 +15,20 @@ if test $# = 0 -o "x$1" = xsnapshot; then
|
|||||||
url="."
|
url="."
|
||||||
else
|
else
|
||||||
if test ! -e "documentation/html/"; then
|
if test ! -e "documentation/html/"; then
|
||||||
echo "ERROR: Please generate the HTML documentation and update the PDF."
|
echo "ERROR: Please generate the HTML documentation before distributing:"
|
||||||
|
echo " autoconf"
|
||||||
|
echo " ./configure"
|
||||||
|
echo " cd documentation; make html-dist"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
if test ! -e "documentation/fltk.pdf"; then
|
||||||
|
echo "ERROR: Please generate the PDF documentation before distributing:"
|
||||||
|
echo " autoconf"
|
||||||
|
echo " ./configure"
|
||||||
|
echo " cd documentation; make html-dist"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
exit
|
||||||
echo Creating tag for release...
|
echo Creating tag for release...
|
||||||
rev="1"
|
rev="1"
|
||||||
version=$1
|
version=$1
|
||||||
|
|||||||
+2
-1
@@ -89,7 +89,8 @@ void Fl_Group::end() {current_ = parent();}
|
|||||||
Fl_Group *Fl_Group::current() {return current_;}
|
Fl_Group *Fl_Group::current() {return current_;}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
See static Fl_Group *Fl_Group::current()
|
Sets the current group.
|
||||||
|
\see Fl_Group::current()
|
||||||
*/
|
*/
|
||||||
void Fl_Group::current(Fl_Group *g) {current_ = g;}
|
void Fl_Group::current(Fl_Group *g) {current_ = g;}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user