~ubuntu-branches/ubuntu/raring/glibmm2.4/raring

« back to all changes in this revision

Viewing changes to gio/src/applicationcommandline.ccg

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-11-07 16:04:46 UTC
  • mfrom: (1.2.78)
  • Revision ID: package-import@ubuntu.com-20121107160446-8enydvq1zgos8yuq
Tags: 2.34.1-0ubuntu1
New upstream version (lp: #1056505)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 * License along with this library; if not, write to the Free
15
15
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
16
 */
17
 
 
 
17
 
18
18
#include <gio/gio.h>
19
19
#include <glibmm/vectorutils.h>
20
20
 
23
23
 
24
24
void ApplicationCommandLine::print(const Glib::ustring& message)
25
25
{
26
 
  g_application_command_line_print(gobj(), "%s", message.c_str()); 
 
26
  g_application_command_line_print(gobj(), "%s", message.c_str());
27
27
}
28
28
 
29
29
void ApplicationCommandLine::printerr(const Glib::ustring& message)
30
30
{
31
 
  g_application_command_line_printerr(gobj(), "%s", message.c_str()); 
 
31
  g_application_command_line_printerr(gobj(), "%s", message.c_str());
32
32
}
33
33
 
34
34
} //namespace Gio