/* call-seq:
 *   window.setTitle( new_title )
 *
 * Change the title of the window. 
 */
static VALUE Window_SetTitle( VALUE self, VALUE aTitle )
{
        sf::Window *object = NULL;
        Data_Get_Struct( self, sf::Window, object );
        object->SetTitle( rb_string_value_cstr( &aTitle ) );
        return Qnil;
}