~ubuntu-branches/ubuntu/quantal/libxfce4util/quantal

« back to all changes in this revision

Viewing changes to libxfce4util/xfce-rc.c

  • Committer: Package Import Robot
  • Author(s): Yves-Alexis Perez
  • Date: 2011-09-12 22:44:20 UTC
  • mfrom: (2.2.7 sid)
  • Revision ID: package-import@ubuntu.com-20110912224420-ure8tf1r2wk7qcyh
Tags: 4.8.2-1
* New upstream release.
* debian/patches:
  - 01_add-desktop-base-in-config-dirs refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
14
 * Library General Public License for more details.
15
15
 *
16
 
 * You should have received a copy of the GNU Library General Public
17
 
 * License along with this library; if not, write to the
18
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19
 
 * Boston, MA 02111-1307, USA.
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with this library; if not, write to the Free
 
18
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
19
 * Boston, MA 02110-1301 USA
20
20
 */
21
21
 
22
22
#ifdef HAVE_CONFIG_H
315
315
 * @rc    : an #XfceRc object.
316
316
 * @group : the name of the group to get entries from.
317
317
 *
318
 
 * Returns the names of all entries in @group if any. 
 
318
 * Returns the names of all entries in @group if any.
319
319
 *
320
320
 * %NULL is a valid input value for @group. #xfce_rc_get_entries will
321
321
 * then return all entries in the so called "NULL group". Though this
455
455
{
456
456
  g_return_if_fail (rc != NULL);
457
457
  g_return_if_fail (key != NULL);
458
 
  
 
458
 
459
459
  if (rc->delete_entry != NULL)
460
460
    (*rc->delete_entry) (rc, key, global);
461
461
}
467
467
 * @rc  : an #XfceRc object.
468
468
 * @key : the key to search for.
469
469
 *
470
 
 * Checks whether the @key has an entry in the current group. 
 
470
 * Checks whether the @key has an entry in the current group.
471
471
 *
472
472
 * Return value: %TRUE if the @key is available, else %FALSE.
473
473
 *