Skip to content

Commit

Permalink
Fix schema id and path
Browse files Browse the repository at this point in the history
  • Loading branch information
bhull2010 committed Nov 20, 2012
1 parent 0f2cbe6 commit 5b97411
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gsettings_SCHEMAS = org.mate.apps.caja-open-terminal.gschema.xml
gsettings_SCHEMAS = org.mate.caja-open-terminal.gschema.xml
@GSETTINGS_RULES@

SUBDIRS = \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<schemalist>
<schema id="org.mate.apps.caja-open-terminal" path="/apps/caja-open-terminal/">
<schema id="org.mate.caja-open-terminal" path="/org/mate/caja-open-terminal/">
<key name="desktop-opens-home-dir" type="b">
<default>false</default>
<summary>Whether opening a terminal on the desktop opens a terminal in the home directory</summary>
Expand Down
2 changes: 1 addition & 1 deletion po/POTFILES.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# List of source files containing translatable strings.
# Please keep this list in alphabetic order.
org.mate.caja-open-terminal.gschema.xml
src/caja-open-terminal.c
caja-open-terminal.schemas.in
2 changes: 1 addition & 1 deletion src/caja-open-terminal.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include <sys/stat.h>

#define SSH_DEFAULT_PORT 22
#define COT_SCHEMA "org.mate.apps.caja-open-terminal"
#define COT_SCHEMA "org.mate.caja-open-terminal"
#define COT_DESKTOP_KEY "desktop-opens-home-dir"
#define CAJA_SCHEMA "org.mate.caja.preferences"
#define CAJA_DESKTOP_KEY "desktop-is-home-dir"
Expand Down

1 comment on commit 5b97411

@sbalneav
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah! Thanks, that was my first schema conversion I've ever done. Obviously, not quite right :)

Please sign in to comment.