fixed Doxygen Generation

svn path=/trunk/; revision=7873
This commit is contained in:
Martin Fuchs 2004-01-25 11:55:59 +00:00
parent bf5b782c83
commit ffce6d13d0
4 changed files with 18 additions and 3 deletions

View file

@ -115,7 +115,8 @@ TOC_EXPAND = NO
DISABLE_INDEX = NO
ENUM_VALUES_PER_LINE = 4
GENERATE_TREEVIEW = YES
TREEVIEW_WIDTH = 240#---------------------------------------------------------------------------
TREEVIEW_WIDTH = 240
#---------------------------------------------------------------------------
# configuration options related to the LaTeX output
#---------------------------------------------------------------------------
GENERATE_LATEX = NO

View file

@ -81,3 +81,17 @@ explorer$(RES_SUFFIX): $(PROGRAM)_intres.rc res/*.bmp res/*.ico
clean:
rm -f $(TARGET) $(OBJECTS) $(PROGRAM)$(RES_SUFFIX)
docu: doxy-footer.html
doxygen Doxyfile
full-docu: docu
-cmd /c start /b /low /wait hhc doxy-doc\html\index.hhp
cmd /c move /y doxy-doc\html\index.chm ros-explorer.chm
doxygen Doxyfile-all
-cmd /c start /b /low /wait hhc doxy-doc\html\index.hhp
cmd /c move /y doxy-doc\html\index.chm ros-explorer-full.chm
doxy-footer.html: ever
updatefooter
ever:

View file

@ -3,7 +3,7 @@
<tr>
<td><address style="align: right;"><small>
ROS Explorer Source Code Documentation
<br>generated on 17.01.2004 by <a href="http://www.doxygen.org/index.html">
<br>generated on 25.01.2004 by <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0>
</small></address>
</td>

View file

@ -275,7 +275,7 @@ BOOL CALLBACK TaskBar::EnumWndProc(HWND hwnd, LPARAM lparam)
found->second._id = pThis->_next_id++;
} else {
HICON hIcon = get_window_icon(hwnd);
HBITMAP hbmp = create_bitmap_from_icon(hIcon, GetSysColorBrush(COLOR_BTNFACE), WindowCanvas(pThis->_htoolbar));
HBITMAP hbmp = hIcon? create_bitmap_from_icon(hIcon, GetSysColorBrush(COLOR_BTNFACE), WindowCanvas(pThis->_htoolbar)): 0;
TBADDBITMAP ab = {0, (UINT_PTR)hbmp};
int bmp_idx = SendMessage(pThis->_htoolbar, TB_ADDBITMAP, 1, (LPARAM)&ab);