Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
xfce4-screensaver
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
56
Issues
56
List
Boards
Labels
Service Desk
Milestones
Custom Issue Tracker
Custom Issue Tracker
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Apps
xfce4-screensaver
Commits
07b12d4a
Commit
07b12d4a
authored
Oct 01, 2018
by
Sean Davis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop unused private.h
parent
1b5f5b49
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
52 deletions
+0
-52
src/Makefile.am
src/Makefile.am
+0
-1
src/private.h
src/private.h
+0
-36
src/xfce-desktop-utils.c
src/xfce-desktop-utils.c
+0
-15
No files found.
src/Makefile.am
View file @
07b12d4a
...
...
@@ -286,7 +286,6 @@ xfce4_screensaver_SOURCES = \
canonicalize.h
\
entry-directories.c
\
entry-directories.h
\
private.h
\
$(BUILT_SOURCES)
\
$(NULL)
...
...
src/private.h
deleted
100644 → 0
View file @
1b5f5b49
/* private.h: various private functions
Copyright 2009, Novell, Inc.
This file is part of the Mate Library.
The Mate Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Mate Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Mate Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301, USA.
Author: Vincent Untz <vuntz@gnome.org>
*/
#ifndef __MATE_DESKTOP_PRIVATE_H__
#define __MATE_DESKTOP_PRIVATE_H__
#include <glib.h>
G_BEGIN_DECLS
void
_mate_desktop_init_i18n
(
void
);
G_END_DECLS
#endif
src/xfce-desktop-utils.c
View file @
07b12d4a
...
...
@@ -33,8 +33,6 @@
#include <xfce-desktop-utils.h>
#include "private.h"
/**
* xfce_gdk_spawn_command_line_on_screen:
* @screen: a GdkScreen
...
...
@@ -74,16 +72,3 @@ xfce_gdk_spawn_command_line_on_screen (GdkScreen *screen, const gchar *command,
return
res
;
}
void
_mate_desktop_init_i18n
(
void
)
{
static
gboolean
initialized
=
FALSE
;
if
(
!
initialized
)
{
bindtextdomain
(
GETTEXT_PACKAGE
,
MATELOCALEDIR
);
#ifdef HAVE_BIND_TEXTDOMAIN_CODESET
bind_textdomain_codeset
(
GETTEXT_PACKAGE
,
"UTF-8"
);
#endif
initialized
=
TRUE
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment