renamed validateClient to allocateClient to reflect the nature of the method
[simple-launcher] / gconf-wrapper.cc
index 6b48775..e1120d6 100644 (file)
 GConfClient *GConfItem::ourClient = NULL;
 
 GConfItem::GConfItem() {
-  validateClient();
+  allocateClient();
 }
 
-void GConfItem::validateClient() {
+void GConfItem::allocateClient() {
   if (ourClient == NULL) {
     ourClient = gconf_client_get_default();
   }