Show
Ignore:
Timestamp:
04/16/06 09:21:47 (3 years ago)
Author:
jordi
Message:

Spell checked all source files.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/DocumentOutline.cxx

    r61 r73  
    2121using namespace ePDFView; 
    2222 
    23 /// Forward declarations. 
     23// Forward declarations. 
    2424static void deleteChild (gpointer child, gpointer userData); 
    2525 
     
    116116/// @brief Gets the number of children for this outline. 
    117117/// 
    118 /// @return The number of children this utline has. 
     118/// @return The number of children this outline has. 
    119119/// 
    120120gint 
     
    173173/// 
    174174void 
    175 DocumentOutline::setTitle (const char *title) 
     175DocumentOutline::setTitle (const gchar *title) 
    176176{ 
    177177    g_assert (NULL != title && "Tried to set a NULL title."); 
     
    184184/// @brief Deletes an outline item's child. 
    185185/// 
    186 /// This function is called by the destructor to delete all childs in 
     186/// This function is called by the destructor to delete all children in 
    187187/// the m_Children list. 
    188188///