~ubuntu-branches/ubuntu/karmic/merkaartor/karmic

« back to all changes in this revision

Viewing changes to Map/PreDefinedTags.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2009-04-12 00:40:16 UTC
  • mfrom: (1.2.3 upstream) (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090412004016-m5gprsrfds72fruq
Tags: 0.13.1-1
* New upstream version - bugfix release:
  - FIX : <Esc> in Name property inspector causes AV
  - FIX : English language warning
  - FIX : proper handling of the "Don't connect GPX nodes..." disabling.
  - FIX : Fit the style editor in 1024x600 resolution
  - FIX : Reflect in dirty dock the fact that multiple objects were
          changed together
* debian/patches: Updating patches for new version.
* debian/rules:
  - don't try to chmod files in usr/share/merkaartor/world_shp,
    the files don't exist anymore there.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef MERKAARTOR_PREDEFINEDTAGS_H_
2
 
#define MERKAARTOR_PREDEFINEDTAGS_H_
3
 
 
4
 
class MapDocument;
5
 
class MapFeature;
6
 
 
7
 
class QComboBox;
8
 
class QString;
9
 
 
10
 
void fillAmenities(QComboBox* Box);
11
 
void fillHighway(QComboBox* Box);
12
 
void fillLandUse(QComboBox* Box);
13
 
 
14
 
void resetTagComboBox(QComboBox* Box, MapFeature* F, const QString& key);
15
 
void tagComboBoxActivated(QComboBox* Box, int idx, MapFeature* F, const QString& key, MapDocument* doc);
16
 
 
17
 
#endif