[Webkit-unassigned] [Bug 44069] [GTK] Clean up WebCore/platform/graphics/gtk/ImageGtk.cpp
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Aug 16 16:31:56 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=44069
Gustavo Noronha (kov) <gns at gnome.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #64530|review? |review+
Flag| |
--- Comment #4 from Gustavo Noronha (kov) <gns at gnome.org> 2010-08-16 16:31:56 PST ---
(From update of attachment 64530)
WebCore/platform/graphics/gtk/ImageGtk.cpp:58
+ if (!GetModuleFileName(hmodule, (CHAR *) dataDirectory, sizeof(retval) - 10))
Should this (CHAR *) be turned into a static_cast<CHAR*>(dataDirectory) for greater style guide followage?
WebCore/platform/graphics/gtk/ImageGtk.cpp:141
+ GOwnPtr<gchar> glibFileName(g_build_filename(getWebKitDataDirectory(), "webkit-1.0", "images", imageName.get(), NULL));
Data directories should follow the "soname" of the library. We have done it in InspectoClientGtk:
http://trac.webkit.org/browser/trunk/WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp#L90
Can you then also please change WebCore/GNUmakefile.am to add 'gtk' after 'webkit' here? You'll notice the inspector one is already correct, but we missed images =(:
http://trac.webkit.org/browser/trunk/WebCore/GNUmakefile.am#L4575
As we discussed on IRC, it would be great to move the getWebKitDataDirectory function to, say, FileSystemGtk, and then use it in InspectorClient as well, so it starts actually working on Windows heh. Let's follow up on that later!
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list