~ubuntu-branches/ubuntu/intrepid/pidgin/intrepid-proposed

« back to all changes in this revision

Viewing changes to libpurple/protocols/qq/utils.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-09-16 22:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20080916221307-plkfuu6a8of5ocr3
Tags: upstream-2.5.1
ImportĀ upstreamĀ versionĀ 2.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
397
397
        if (purple_prefs_exists("/prpl/qq/buddy_icon_dir"))
398
398
                return purple_prefs_get_string("/prpl/qq/buddy_icon_dir");
399
399
        else
400
 
                return QQ_BUDDY_ICON_DIR;
401
 
}
402
 
 
403
 
#ifdef _WIN32
404
 
const char *qq_win32_buddy_icon_dir(void)
405
 
{
406
 
        static char *dir = NULL;
407
 
        if (dir == NULL)
408
 
                dir = g_build_filename(wpurple_install_dir(), "pixmaps",
409
 
                        "purple", "buddy_icons", "qq", NULL);
410
 
        return dir;
411
 
}
412
 
#endif
 
400
                return NULL;
 
401
}