Changeset 2a641ce355715775387a30156103e1022bc3a25d
- 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:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rcc633c4
|
r2a641ce
|
|
| | 1 | 2008-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 | |
| 1 | 6 | 2008-09-30 Armin Burgmeier <armin@arbur.net> |
| 2 | 7 | |
-
|
r883ac1c
|
r2a641ce
|
|
| 189 | 189 | if(!Glib::file_test(file, Glib::FILE_TEST_IS_REGULAR)) |
| 190 | 190 | { |
| 191 | | m_root.reset(new ParentEntry("gobby_config") ); |
| | 191 | m_root.reset(new ParentEntry("gobby-config") ); |
| 192 | 192 | return; |
| 193 | 193 | } |
| … |
… |
|
| 200 | 200 | { |
| 201 | 201 | // Empty config |
| 202 | | m_root.reset(new ParentEntry("gobby_config") ); |
| | 202 | m_root.reset(new ParentEntry("gobby-config") ); |
| 203 | 203 | return; |
| 204 | 204 | } |
| … |
… |
|
| 207 | 207 | if(document == NULL) |
| 208 | 208 | { |
| 209 | | m_root.reset(new ParentEntry("gobby_config") ); |
| | 209 | m_root.reset(new ParentEntry("gobby-config") ); |
| 210 | 210 | return; |
| 211 | 211 | } |
| … |
… |
|
| 216 | 216 | if(root == NULL) |
| 217 | 217 | { |
| 218 | | m_root.reset(new ParentEntry("gobby_config") ); |
| | 218 | m_root.reset(new ParentEntry("gobby-config") ); |
| 219 | 219 | return; |
| 220 | 220 | } |
| … |
… |
|
| 226 | 226 | { |
| 227 | 227 | xmlpp::Document document; |
| 228 | | xmlpp::Element* root = document.create_root_node("gobby_config"); |
| | 228 | xmlpp::Element* root = document.create_root_node("gobby-config"); |
| 229 | 229 | m_root->save(*root); |
| 230 | 230 | |