1
0
mirror of https://gitlab.gnome.org/GNOME/gparted synced 2024-07-05 01:08:39 +00:00
gparted/compose
Mike Fleetwood 69d1bbcf8f Remove old .cvsignore files
As the source code is managed in GIT and there is a .gitignore file in
the top level directory specifying file names to exclude from version
control, then the old per-directory .cvsignore files for CVS are
redundant.

Add the only missing and applicable entry from src/.cvsignore of '.libs'
to .gitignore and remove all the .cvsignore files.
2017-06-02 10:47:35 -06:00
..
Makefile.am removed INSTALL some fixes to make 'make dist' work (thanks to Daniel 2005-10-05 22:37:17 +00:00
README Update String::ucompose library to version 1.0.5 2011-09-26 16:44:04 -06:00
ucompose.hpp Replace obsolete FSF postal address in copyright notices (#721565) 2014-01-26 10:53:23 +00:00

Defines String::ucompose(fmt, arg...) for easy, i18n-friendly
composition of strings with Gtkmm >= 1.3.* (see www.gtkmm.org).
Uses Glib::ustring instead of std::string which doesn't work with
Gtkmm due to character encoding troubles with stringstreams.

Version 1.0.5.

Copyright (c) 2002, 03, 04, 07 Ole Laursen <olau@hardworking.dk>.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation; either version 2.1 of
the License, or (at your option) any later version.


Basic usage is like:
String::ucompose("This is a %1x%2 matrix.", rows, cols);

See http://people.iola.dk/olau/compose/ for more details.