~mateo-salta/nitroshare/nitroshare

« back to all changes in this revision

Viewing changes to include/util/defaults.h

  • Committer: Nathan Osman
  • Date: 2012-06-30 18:21:50 UTC
  • Revision ID: admin@quickmediasolutions.com-20120630182150-avavhqs8km192915
New share boxes are now properly positioned when added to the desktop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#ifndef DEFAULTS_H
18
18
#define DEFAULTS_H
19
19
 
 
20
#include <QPoint>
20
21
#include <QVariantMap>
21
22
 
22
23
namespace Defaults {
28
29
        AcceptNone
29
30
    };
30
31
 
31
 
    // This map contains all of the default settings for the application
 
32
    /* This map contains all of the default settings for the application. */
32
33
    extern QVariantMap Map;
33
34
 
 
35
    QPoint GetDefaultShareBoxPos();
34
36
    void Init();
35
37
}
36
38