Commit graph

334 commits

Author SHA1 Message Date
Ernestas Kulik f0df1fc510 general: only remember window size
Currently, Nautilus is able to save the last window position when it’s
closed. That is broken in certain cases (#197 and multi-monitor setups
in general) and therefore window placement is best left to the window
manager.
2018-01-16 13:23:54 +02:00
Carlos Soriano ec3eefcd2e tests: Put eel check and nautilus check under display-test option
Although eel can be split into displayless and display like we did for
other tests, let's make sure we have a working prototype for now.
2018-01-06 01:59:04 +01:00
António Fernandes 6c5f6ecc28 eel-vfs-extensions: Remove unused, undefined API
Leftovers from the gnome-vfs to gio port 10 years ago
https://git.gnome.org/browse/archive/eel/commit/?id=59511dfee330102ee42e09bef37cbc9cd12973c6
2018-01-04 18:32:50 +00:00
Ernestas Kulik d48db627fc eel: remove unused code
Additionally, this commit makes some unused public functions static.
2018-01-02 13:11:10 +02:00
Ernestas Kulik e3777b5410 program-choosing: drop eel dependency
Terminal applications are launched via eel, and, since this file is the
only consumer of that API, the code from eel can be moved over.
2018-01-02 13:11:10 +02:00
Ernestas Kulik 983892a656 build: general cleanups
This commit does the following:
  * Canonicalize the style:
    * Use two-space indentations.
    * Un-Autotools-ify option names.
    * Don’t align arguments, simply increase indentation.
    * Don’t add a space before opening parenthesis in calls.
  * Remove unused variables.
  * Remove unused dependencies.
  * Remove config.h.meson.
  * Optimize dependencies.
  * Use disabler functionality for libselinux dependency, to save lines.
2018-01-02 12:51:32 +02:00
Ernestas Kulik 74dd9c9f72 general: remove desktop support 2018-01-02 12:51:32 +02:00
Carlos Soriano f3f28052ec Merge branch 'remove-error-details-expander' into 'master'
Remove error details expander

See merge request GNOME/nautilus!41
2018-01-01 23:36:19 +00:00
Ernestas Kulik 61ac48bdc0 file-utilities: rework common prefix computation
Currently, the process for getting the common prefix of a list of file
names is a tad too greedy:
    1. Find the common prefix of all the strings.
    2. Strip the extension from the prefix.
    3. Strip trailing punctuation.

Step 2 may strip dots if there’s trailing whitespace and step 3 may
strip useful punctuation (e.g. parentheses). This commit reworks the
process as such:
    1. Strip the extension from all the file names.
    2. Find the common prefix of all the strings.
    3. Trim trailing whitespace.

Fixes #174.
2017-12-23 17:38:17 +02:00
Alexandru Fazakas 490a6cbeb8 file-operations: Port error details inline
As the eel_gtk_message_dialog_set_details_label function is only used once,
we can safely remove it and do everything inside of nautilus-file-operations.c.

Thus, we deleted the eel function and we do everything inside the
do_run_simple_dialog function and remove the function header from the header
file. We add the label straight into the content_area of the dialog box.

https://bugzilla.gnome.org/show_bug.cgi?id=598671
2017-12-21 02:11:24 +02:00
Alexandru Fazakas 28ae2d032b eel/eel-gtk-extensions.c: Remove expander showing error details
Creating directories within read-only ones is not allowed and appropriate
error messages pop up.

Trying to create a directory within a read-only directory opens a window
showing the error. Within the window, an expander shows the error details.
Whenever the expander is clicked, the window moves unexpectedly.
We need to fix this as the behaviour is not normal and doesn't look good.

In order to fix the issue, we removed the expander and included the error
details as a label inside the dialog box itself.

https://bugzilla.gnome.org/show_bug.cgi?id=786212
2017-12-20 01:35:21 +02:00
Alexandru Pandelea a9c446afe2 Add favorite files
Add option to make files Favorite, by either toggling a star in the
list view, or from the context menu.

https://bugzilla.gnome.org/show_bug.cgi?id=786039
2017-11-05 20:09:00 +01:00
Kevin Lopez 047735a28b eel-gtk-extensions: avoid deprecated warnings
This patch avoids the use of gdk_screen_get_width,
gdk_screen_get_height,gdk_screen_width,gdk_screen_height, functions
which are deprecated since 3.22 version of GDK library.

Also deletes the eel_pop_up_context_menu function since is not used
in the source code.

https://bugzilla.gnome.org/show_bug.cgi?id=780283
2017-08-17 15:37:45 +02:00
Ernestas Kulik 857a90c29b autotools: kill it
We’re moving to Meson this cycle, so this is losing some deadweight.

https://bugzilla.gnome.org/show_bug.cgi?id=780366
2017-03-22 17:18:29 +02:00
Ernestas Kulik ed5652c89a general: add support for Meson
Since it’s 2017 already, Nautilus should use a build system that doesn’t
take longer to set up the build than it takes to actually build. An
observed build time using Ninja of roughly one-fifth of what it took
Autotools is more than reason enough to add support for Meson. Along
with that, this commit adds a convenience script to generate a tarball
for releases, since we use libgd as a submodule and Meson does not
handle source distributions.

https://bugzilla.gnome.org/show_bug.cgi?id=778167
2017-02-24 00:24:27 +02:00
Ernestas Kulik 728300331d general: drop git.mk
This commit removes git.mk and adds hand-written gitignore files. That
is needed to ignore build/, which is the directory of choice for Meson
builds.

https://bugzilla.gnome.org/show_bug.cgi?id=778167
2017-02-24 00:24:27 +02:00
Mohammed Sadiq 3c8d450cd6 nautilus-toolbar: disable bookmark on 'Other Locations'
'Other locations' is already listed in the sidebar. So there is no
need for allowing the user to bookmark 'Other Locations'.

This commit makes the bookmark button in toolbar insensitive for
'Other Locations'.

https://bugzilla.gnome.org/show_bug.cgi?id=771163
2016-09-21 10:24:19 +02:00
Alexandru Pandelea 0b6a05851d eel-vfs-extensions: Update filename extensions
If a file had the extensions .tar.bz or .tar.xz, the function
eel_filename_get_extension_offset would identify only .bz or .xz as
an extension.

To fix this, .xz and .bz were added among the other special cases.

https://bugzilla.gnome.org/show_bug.cgi?id=771018
2016-09-08 21:54:20 +03:00
Carlos Soriano 0abaab1c44 general: adjust uncrustify style
https://bugzilla.gnome.org/show_bug.cgi?id=770564
2016-09-06 15:41:06 +02:00
Carlos Soriano 52d960542b general: run uncrustify
And make the style of Nautilus the same for all files.
Hopefully we can fix all the style issues we can find in the next days,
so expect a little of movement on this.

https://bugzilla.gnome.org/show_bug.cgi?id=770564
2016-08-29 18:37:10 +02:00
Neil Herald ca0e00b6b3 files-view: change "New Folder /w Selection" to offer a name
New Folder with Selection currently doesn't offer a folder name. It
would be better if it suggested a folder name based on the files that
are selected.

With this change, it now looks for a common filename prefix of the
selected files, and pre-populates the folder name entry with that. If no
common prefix is found that is greater than 3 characters long, the
folder name entry will be left blank.

https://bugzilla.gnome.org/show_bug.cgi?id=747907
2016-07-10 08:30:48 +01:00
Ernestas Kulik f3aabd3d17 eel-canvas: don't override deprecated functions
AtkComponentIface's {add,remove}_focus_handler should not be overridden,
since ATK 2.9.4, as atk_component_{add,remove}_focus_handler() are
deprecated.

This commit removes deprecated virtual function overrides.

https://bugzilla.gnome.org/show_bug.cgi?id=762236
2016-05-03 13:16:56 +03:00
Ernestas Kulik 225f2cf768 eel-canvas: use GdkSeat operations
Some GdkDisplay operations have been deprecated in GDK 3.20.

This commit replaces the deprecated code in eel_canvas_item_grab() and
eel_canvas_item_ungrab() functions with new GdkSeat operations.

https://bugzilla.gnome.org/show_bug.cgi?id=762235
2016-05-03 12:57:29 +03:00
Carlos Soriano 1ffb8ca593 general: remove vim modelines
Vim and emacs modelines are used to specify some of the code style in the code.
However, this is misleading and poorly supported since nautilus had a mix of
code style for some time.
Also, the mode lines doesn't specify the whole code style, so we will need to
use a different tool as well to specify the whole code style.
For that, we can just use a different tool for everything.

So remove the mode lines, and in a short future we will reestyle the nautilus
code to have a single code style, and use a tool like editorconfig to specify
the whole code style.
2016-04-04 18:08:36 +02:00
Carlos Soriano ab61aa46d8 eel-canvas: remove background draw handling
This seems no longer necessary. It looks like it was done to avoid
flashing when redrawing, but probably this was fixed sometime in the
past, so a transparent background in a widget doesn't flash anymore.

https://bugzilla.gnome.org/show_bug.cgi?id=761965
2016-02-15 11:38:43 +01:00
Carlos Soriano 864c815479 file: refactor eel-partition for better ownership management
Instead of a generic function to filter GLists, implement a simpler
and clearer filter function for file lists, since it was the only
use of that function.
In this way the ownership of files and directories are clearer
since it always returns a new allocated nautilus file list, and also
it always uses nautilus_file_ref instead of the generic g_object_ref
to match what we do everywhere else in nautilus, so it's not confusing
when breaking at nautilus_file_ref/unref for ref counting debugging.

This change fixes multiple leaks on nautilus files catched by valgrind.
2015-12-11 22:42:04 +01:00
Georges Basile Stavracas Neto 6adf3cf74c project: replace deprecated GtkMisc calls
GtkMisc is deprecated since 3.14 release, being replaced
by GtkWidget's halign & valign, and GtkLabel's xalign &
yalign.

Nautilus, however, did not updated its codebase to match
the new deprecations.

Remove any reminescent gtk_misc* calls from the codebase.
2015-07-21 18:20:26 -03:00
Cosimo Cecchi 396aa4b0e5 eel: remove eel_embed_image_in_frame()
It's unused now.
2015-05-24 19:41:39 -07:00
Cosimo Cecchi c590053c18 eel: remove some unused API 2015-05-23 13:45:39 -07:00
Cosimo Cecchi e816485d52 eel: remove unused EelEditableLabel
This was only used for in-place renaming inside the canvas container,
which does not exist any more. Remove it.
2015-05-23 12:14:32 -07:00
Cosimo Cecchi cbc37d3ecd Don't mention FSF address
Use the website instead.

https://bugzilla.gnome.org/show_bug.cgi?id=721518
2014-02-17 14:41:43 -08:00
Daniel Mustieles e314fbcc99 Updated FSF's address 2014-01-31 14:13:48 +01:00
Alexander Larsson c3b2b0a022 EelEditableLabel: Render background
Without this the rename widget background is always transparent, which
makes it very hard to read on e.g. the desktop with a background
image.
2013-11-06 10:23:58 +01:00
Alexander Larsson 481cf68948 Fix rename entry position
We need to not modify the cairo_t when we propagate up to the parent class
as this affects where GtkLayout draws the child widgets.

https://bugzilla.gnome.org/show_bug.cgi?id=705464
2013-11-04 16:50:48 +01:00
Cosimo Cecchi 4edfee8c40 eel: don't use deprecated GtkStock and GtkImageMenuItem 2013-08-13 12:34:51 +02:00
Cosimo Cecchi f4ced15684 Remove extraneous separator from editable label context menu 2013-08-03 15:30:20 +02:00
Srinivasa Ragavan fabea85329 Store the correct current_item if it has changed. It is incorrect to
ignore the new current item just because the mouse is down. It is
later used for right click.

Fixes bgo #704289.
2013-07-17 19:30:47 +05:30
Andrés G. Aragoneses 9473dd41c1 build: stop using INCLUDES, deprecated by automake 1.7
We already depend on automake 1.9, so using the replacement of
INCLUDES (AM_CPPFLAGS) won't hurt, especially now that it is
a warning shown by default since automake 1.13, as evidenced by
this build log of mine:

Makefile.am: installing './INSTALL'
eel/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
eel/Makefile.am: installing './depcomp'
parallel-tests: installing './test-driver'
libnautilus-extension/Makefile.am:7: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
libnautilus-private/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
nautilus-sendto-extension/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/Makefile.am:13: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
test/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Signed-off-by: Alexander Larsson <alexl@redhat.com>
2013-06-18 11:30:31 +02:00
Cosimo Cecchi 7965944d6b editable-label: remove multicontext menuitems
They have been removed from stock GtkEntry as well, and this function is
now deprecated.
2013-06-17 17:06:57 -07:00
Rui Matos 670875d76e eel-editable-label: Fix string length on retrieve-surrounding handler
https://bugzilla.gnome.org/show_bug.cgi?id=696532
2013-03-25 13:31:18 -04:00
Cosimo Cecchi d486af277f eel-canvas: fix double tap with touchscreen devices
Code here is not doing what the comment (and the symmetric part in
the RELEASE case) says.

https://bugzilla.gnome.org/show_bug.cgi?id=688281
2013-03-08 15:25:40 -05:00
William Jon McCann 447d2ad694 eel: use G_APP_INFO_CREATE_NEEDS_TERMINAL to run command in terminal 2013-02-15 14:28:16 -05:00
Cosimo Cecchi ae16296bbc eel: remove unused eel_gtk_tree_view_set_activate_on_single_click 2013-01-22 20:36:47 -05:00
William Jon McCann d721a8f206 Normalize signal names
https://bugzilla.gnome.org/show_bug.cgi?id=692234
2013-01-22 10:47:54 -05:00
Cosimo Cecchi 6a7d30d1d9 eel: remove more unused code 2013-01-03 19:36:21 +01:00
Cosimo Cecchi 0dfa2ba20f eel-canvas: use GtkContainerAccessible for EelCanvasAccessible
Removes tons of boilerplate code not needed anymore.
2013-01-03 19:36:21 +01:00
Cosimo Cecchi 06d561a92c eel: remove unused code 2013-01-03 19:36:21 +01:00
Cosimo Cecchi 640b5be9a1 editable-label: derive from GtkWidgetAccessible directly
Now that it's publicly exported by GTK, derive our accessible class from
GtkWidgetAccessible as a normal GObject.
2013-01-03 19:36:21 +01:00
Cosimo Cecchi c6a1bf5fa5 build: use GNOME_MAINTAINER_MODE_DEFINES
Instead of defining our own set of deprecation cflags.
2012-10-23 20:04:03 -04:00
Cosimo Cecchi f73fc7fc61 eel: remove unused code 2012-10-23 16:56:35 -04:00
Cosimo Cecchi 61e2affb01 all: don't use eel_g_str_list_copy()
Use g_list_copy_deep() instead.
2012-10-23 16:18:33 -04:00
Cosimo Cecchi 7af24a892c all: don't use eel_g_object_list_copy()
Use g_list_copy_deep() instead.
2012-10-23 16:13:58 -04:00
Cosimo Cecchi d5c4c3c0f3 editable-label: add an input-only window for events
Add another input-only child to the parent GdkWindow's for events and
imcontext. Since we will be painted in a GtkLayout, using only one
input-only window won't work well with scrolling, but this way we can
ensure that whatever GdkWindow the XIM engine will try to ensure native,
it won't be our (floating) drawing window.

https://bugzilla.gnome.org/show_bug.cgi?id=686053
2012-10-17 23:15:29 -04:00
Cosimo Cecchi f149927a48 Revert "editable-label: don't use a input-output window"
This reverts commit b67360316c.

It breaks scrolling, as explained in
https://bugzilla.gnome.org/show_bug.cgi?id=686322
2012-10-17 16:16:20 -04:00
Cosimo Cecchi b67360316c editable-label: don't use a input-output window
Use the same behavior of GtkEntry i.e. create an input only GdkWindow
for the text area. This avoids the text area becoming black when it's
used together with the XIM module.

https://bugzilla.gnome.org/show_bug.cgi?id=686053
2012-10-15 12:57:11 -04:00
William Jon McCann 0ab374ea0b Use git.mk 2012-09-17 18:07:25 -04:00
Cosimo Cecchi a4ecbd076f Remove unnecessary gdk_threads_enter/leave calls
Since we don't ever call gdk_threads_init()
2012-08-30 08:48:03 -04:00
Pavel Vasin 5f5bea72af eel: fix leaked path string
https://bugzilla.gnome.org/show_bug.cgi?id=682603
2012-08-24 18:41:34 +02:00
Pavel Vasin 60217c642c eel: fix GtkTreePath leak
https://bugzilla.gnome.org/show_bug.cgi?id=682603
2012-08-24 18:41:28 +02:00
William Jon McCann 216e50f40e Make getting extension more robust
Ensure the basename and extension have at least one char each.
2012-08-22 14:22:12 -04:00
William Jon McCann 3935384e7f Add a utf8 test to eel-string 2012-08-14 09:45:21 -04:00
Cosimo Cecchi 195e7ee00d eel: don't use GDK_THREADS macros
Use the function equivalents.
2012-07-31 17:08:27 +02:00
William Jon McCann b1c13443f8 Make dialogs modal 2012-07-16 14:22:18 -04:00
William Jon McCann ce64cbc6bf Add a Recent files place
https://bugzilla.gnome.org/show_bug.cgi?id=325824
2012-07-14 06:59:35 -04:00
Cosimo Cecchi 91a887f916 a11y: add missing prototype 2012-06-08 12:07:38 -04:00
Cosimo Cecchi 6c5baeb762 a11y: fix accessibility implementation for NautilusIconContainer
Clean up a11y code and make sure inheritance for
EelCanvasAccessible->NautilusIconContainerAccessible and for
EelCanvasItemAccessible->NautilusIconCanvasItemAccessible work properly.
This makes the ATK state machinery in EelCanvasItemAccessible work
again, which fixes

https://bugzilla.gnome.org/show_bug.cgi?id=677509
2012-06-07 23:50:34 -04:00
Cosimo Cecchi d9fafc1f0f a11y: remove now unused code
eel_accessibility_create_derived_gtype() is now unused.
2012-06-07 14:50:37 -04:00
Cosimo Cecchi f2c748dc06 a11y: make sure not to loop while looking for parent get_accessible
If the final class does not override the get_accessible method, it will
inherit it from the parent class; what we're interested in is the first
class for which get_accessible is != from our class get_accessible.
2012-06-07 14:46:31 -04:00
Cosimo Cecchi ccdd920501 editable-label: fix accessibility support
Use the previously introduced function to create a suitable
GtkAccessible implementation.

https://bugzilla.gnome.org/show_bug.cgi?id=672498
2012-06-07 14:08:57 -04:00
Cosimo Cecchi a9777929c4 a11y: add a method to create a derived GtkWidgetAccessible type
For EelEditableLabel, we need to create an object derived from the
accessible type of the parent class; since that will be a
GtkWidgetAccessible, which is private, we can't just subclass it using
the regular GObject mechanisms.
This functions creates a derived GType by peeking at the parent
accessible class and type.

https://bugzilla.gnome.org/show_bug.cgi?id=672498
2012-06-07 14:07:47 -04:00
Cosimo Cecchi c00eb306ee all: fix GCC pointer signedness warnings
New cycle, new set of warnings triggered by glibc/GCC.
2012-05-31 14:56:28 -04:00
Cosimo Cecchi 6cb7a11268 trivial: remove other ChangeLog files 2012-05-30 17:04:12 -04:00
Cosimo Cecchi 377349ba19 editable-label: don't use deprecated gtk_draw_insertion_cursor()
Replace the calls with gtk_render_insertion_cursor()
2012-04-30 10:43:29 -04:00
Cosimo Cecchi 845d3fc93c editable-label: fix selection color in backdrop state
Don't set the ACTIVE flag if we don't have focus, it just doesn't make
sense.
2012-04-24 12:22:05 -04:00
Cosimo Cecchi 2cf25e2a64 all: trivial cleanups 2012-04-24 11:48:20 -04:00
Cosimo Cecchi ac772679b3 eel: remove more unused code 2012-04-11 12:19:00 -04:00
Cosimo Cecchi 0e5bc91c5a eel: remove unused eel_strdup_strftime()
And there was much rejoice.
2012-04-11 12:14:41 -04:00
Cosimo Cecchi 9de34580ae eel: remove unused code
All these functions are now unused and can be removed.
2012-04-11 12:14:41 -04:00
Cosimo Cecchi 4396a25f9a all: use g_str_has_prefix()
Instead of the eel helper.
2012-04-11 11:36:42 -04:00
Cosimo Cecchi f9a02d23fb all: don't use eel_round()
Just use floor().
2012-04-11 11:36:42 -04:00
Cosimo Cecchi 13982305a2 all: don't use eel_get_system_time()
Use g_get_monotonic_time() instead.
2012-04-11 11:36:41 -04:00
Nelson Benitez Leon 3deb33d449 eel-canvas: ignore extra mouse button events
Ignore button press/release events for mouse buttons greater
than 5 so allowing forward and backward mouse buttons to work
over icons.

Part of bug 660006

Signed-off-by: Nelson Benitez Leon <nbenitezl@gmail.com>
2012-04-04 16:21:37 +02:00
Cosimo Cecchi ba281e27b8 eel: delete unused code
We don't use EelDPoint/EelIPoint anymore; other functions here are just
unused.
2012-03-16 18:00:44 -04:00
Cosimo Cecchi 0d46b0620b all: remove eel_g_hash_table_new_free_at_exit()
Especially when references can be owned by non-resident modules, this is
just too dangerous.

https://bugzilla.gnome.org/show_bug.cgi?id=670989
2012-03-07 21:04:51 -05:00
Cosimo Cecchi 3da42acd7a build: link eel and libnautilus-private to libm 2012-02-20 18:28:58 +01:00
Carlos Garnacho 8c778211e5 eel: Queue resizes on the canvas as elements change visibility
Not queueing resizes may play oddly with the size request caches in
GTK+, resulting in gtk_widget_get_preferred_width/height returning
0 even after the canvas was populated.

https://bugzilla.gnome.org/show_bug.cgi?id=667831
2012-01-16 11:04:07 -05:00
Cosimo Cecchi 33ca9cd5b0 eel: remove unused eel_accessibility_set_name/description 2011-12-08 10:39:22 -05:00
Cosimo Cecchi 45ee835907 eel-string: don't segfault in eel_str_replace_substring for NULL strings
Just check if the strings are != NULL before calling strlen() on them.
2011-10-25 13:19:17 -04:00
Cosimo Cecchi a816e00ef7 all: don't use deprecated GDK pointer methods
Use the new GdkDevice methods instead.
2011-10-18 11:28:08 -04:00
Cosimo Cecchi e54ace0a55 editable-label: use GTK_STYLE_CLASS_ENTRY
Because that's what it is actually...
2011-10-17 18:56:03 -04:00
Cosimo Cecchi b143b95f20 editable-label: use gtk_render_frame() instead of hardcoding a stroke
This allows the stroke to use rounded corners and border images, among
other things.
2011-10-17 18:46:35 -04:00
Cosimo Cecchi f9383acb37 editable-label: don't hardcode black for the insertion cursor
Use the theme foreground/text color instead.
2011-10-17 18:45:35 -04:00
Cosimo Cecchi 3f95c46dff editable-label: remove useless code
No need to call _set_background() on the editable label widget.
2011-10-17 18:43:32 -04:00
Cosimo Cecchi 8b87a3e86e editable-label: make sure to size_request the padding set on the label
And not the alignment, which is an offset inside the allocated size.
2011-10-17 18:42:41 -04:00
Cosimo Cecchi 428b468e8e all: remove offset_x/offset_y parameters from eel_pop_up_context_menu()
They're unused now.
2011-10-05 15:08:05 -04:00
Federico Mena Quintero 7b290a2b2f Remove stale 'offset' in eel_pop_up_context_menu()
Also, fix the fallback timestamp for the menu popup.

Signed-off-by: Federico Mena Quintero <federico@gnome.org>
2011-10-05 08:08:10 -05:00
Cosimo Cecchi 61699ef56e eel: remove unused eel_gdk_rgba_is_dark() 2011-10-05 12:30:09 -04:00
Cosimo Cecchi bcc62bec90 eel-string: remove unused code 2011-10-05 12:30:09 -04:00
Cosimo Cecchi 3daaaf4a9e all: don't use eel_strcmp() 2011-10-05 12:30:09 -04:00
Cosimo Cecchi 96254fec43 eel: remove unused eel-gtk-macros.h file 2011-10-05 12:30:09 -04:00