renamed validateClient to allocateClient to reflect the nature of the method
authormishas <mikhail.sobolev@gmail.com>
Thu, 12 Apr 2007 06:59:10 +0000 (06:59 +0000)
committermishas <mikhail.sobolev@gmail.com>
Thu, 12 Apr 2007 06:59:10 +0000 (06:59 +0000)
git-svn-id: file:///svnroot/simple-launcher/trunk@167 3ba93dab-e023-0410-b42a-de7732cf370a

gconf-wrapper.cc
gconf-wrapper.h

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();
   }
index a62fc56..68f192a 100644 (file)
@@ -29,7 +29,7 @@ public:
 protected:
   GConfItem();  // I do not want to create instances of this class
 
-  static void validateClient();
+  static void allocateClient();
 
 protected:
   static GConfClient *ourClient;