COIN-OR::LEMON - Graph Library

Changeset 2012:224cd6aacfc1 in lemon-0.x for gui/graph-displayer.cc


Ignore:
Timestamp:
03/23/06 20:57:14 (18 years ago)
Author:
Akos Ladanyi
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2646
Message:
  • added gettext infrastructure to the gui
  • the gui has a separate configure script now
  • other minor changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • gui/graph-displayer.cc

    r1869 r2012  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include "all_include.h"
    26#include "mapstorage.h"
     
    48#include <libgnomecanvasmm.h>
    59#include <libgnomecanvasmm/polygon.h>
     10
     11#include <locale.h>
     12#include "gettext.h"
    613
    714#define MAIN_PART
     
    1522int main(int argc, char *argv[])
    1623{
     24  bindtextdomain(PACKAGE, LOCALEDIR);
     25  bind_textdomain_codeset(PACKAGE, "UTF-8");
     26  textdomain(PACKAGE);
    1727
    1828  //initializing
Note: See TracChangeset for help on using the changeset viewer.