Show
Ignore:
Timestamp:
04/13/06 05:47:01 (3 years ago)
Author:
jordi
Message:

Added the doxygen documentation builder file in the "doc" directory. I've also wirtten the missing documentation for all files in "src", but not in "src/gtk" a it would be redundant.

Also I've been paranoic on spelling (I'm a very bad spelled) and spell checked all source files, changing some string. Updated the translations.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/DocumentPage.cxx

    r43 r49  
    3434 
    3535/// 
    36 /// @brief Deletes all dinamycally allocated memory for DocumentPage. 
     36/// @brief Deletes all dynamically allocated memory for DocumentPage. 
    3737/// 
    3838DocumentPage::~DocumentPage () 
     
    4545/// 
    4646/// Gets the actual pixels the page is formed of. The format of the image 
    47 /// is RGB, using 3 bytes per pixel and a total of getWidth() * getHeight () 
     47/// is RGB, using 3 bytes per pixel and a total of getWidth() * getHeight() 
    4848/// pixels. 
    4949/// 
     
    7474/// 
    7575/// The row stride is the bytes between two consecutive rows of the page's  
    76 /// image retrived by getData(). Currently this value is 3 * getWidth (),  
     76/// image retrieved by getData(). Currently this value is 3 * getWidth(),  
    7777/// because I use 3 bytes per pixel, but this can change, so better use this 
    7878/// function.