rename lib module to more specific name stardict_lib

This commit is contained in:
Evgeniy Dushistov
2013-07-07 19:45:37 +00:00
parent c3d733b1fc
commit a4f441aa32
3 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
#include "file.hpp" #include "file.hpp"
#include "mapfile.hpp" #include "mapfile.hpp"
#include "lib.hpp" #include "stardict_lib.hpp"
// Notice: read src/tools/DICTFILE_FORMAT for the dictionary // Notice: read src/tools/DICTFILE_FORMAT for the dictionary
// file's format information! // file's format information!
@@ -45,7 +45,7 @@ namespace {
static inline gint stardict_strcmp(const gchar *s1, const gchar *s2) static inline gint stardict_strcmp(const gchar *s1, const gchar *s2)
{ {
gint a=g_ascii_strcasecmp(s1, s2); const gint a = g_ascii_strcasecmp(s1, s2);
if (a == 0) if (a == 0)
return strcmp(s1, s2); return strcmp(s1, s2);
else else

View File

@@ -4,7 +4,7 @@
#include <vector> #include <vector>
#include "file.hpp" #include "file.hpp"
#include "lib.hpp" #include "stardict_lib.hpp"
#include "readline.hpp" #include "readline.hpp"
//this structure is wrapper and it need for unification //this structure is wrapper and it need for unification