Changeset 2a641ce355715775387a30156103e1022bc3a25d

Show
Ignore:
Timestamp:
10/01/08 22:34:33 (5 years ago)
Author:
Armin Burgmeier <armin@…>
Parents:
cc633c42d34d2955435a187ca7e3a4163e1c881d
Children:
927cc449d112ac085e67682a6f7de8434861026c
git-committer:
Armin Burgmeier <armin@arbur.net> / 2008-10-01T22:34:33Z+0200
Message:

Renamed the root config from gobby_config to gobby-config

2008-10-01 Armin Burgmeier <armin@…>

  • src/util/config.cpp: Renamed the root config from gobby_config to gobby-config.
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rcc633c4 r2a641ce  
     12008-10-01  Armin Burgmeier  <armin@arbur.net> 
     2 
     3        * src/util/config.cpp: Renamed the root config from gobby_config to 
     4        gobby-config. 
     5 
    162008-09-30  Armin Burgmeier  <armin@arbur.net> 
    27 
  • src/util/config.cpp

    r883ac1c r2a641ce  
    189189        if(!Glib::file_test(file, Glib::FILE_TEST_IS_REGULAR)) 
    190190        { 
    191                 m_root.reset(new ParentEntry("gobby_config") ); 
     191                m_root.reset(new ParentEntry("gobby-config") ); 
    192192                return; 
    193193        } 
     
    200200        { 
    201201                // Empty config 
    202                 m_root.reset(new ParentEntry("gobby_config") ); 
     202                m_root.reset(new ParentEntry("gobby-config") ); 
    203203                return; 
    204204        } 
     
    207207        if(document == NULL) 
    208208        { 
    209                 m_root.reset(new ParentEntry("gobby_config") ); 
     209                m_root.reset(new ParentEntry("gobby-config") ); 
    210210                return; 
    211211        } 
     
    216216        if(root == NULL) 
    217217        { 
    218                 m_root.reset(new ParentEntry("gobby_config") ); 
     218                m_root.reset(new ParentEntry("gobby-config") ); 
    219219                return; 
    220220        } 
     
    226226{ 
    227227        xmlpp::Document document; 
    228         xmlpp::Element* root = document.create_root_node("gobby_config"); 
     228        xmlpp::Element* root = document.create_root_node("gobby-config"); 
    229229        m_root->save(*root); 
    230230