~ubuntu-branches/debian/stretch/psi-plus/stretch

« back to all changes in this revision

Viewing changes to src/plugins/generic/gomokugameplugin/gomokugameplugin.cpp

  • Committer: Package Import Robot
  • Author(s): Boris Pek
  • Date: 2013-10-23 02:42:20 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20131023024220-bk2hyoenqkwfhpgw
Tags: 0.16.242-1
* New upstream release:
  fixed the problem of initialization of private conversation when both
  sides use libotr 4.0.x. (Closes: #724880)
* Update debian/watch: sources were moved.
* Delete psi-plus-content-downloader package and update all related files.
  This plugin is in psi-plus-plugins package now.
* Update debian/control:
  - remove all currently unneeded Replaces and Breaks fields
  - add build dependency on libidn11-dev
* Update debian/rules: simplify get-orig-source section.
* Update debian/copyright:
  - update Source field due to changes in sources location
  - remove copyright holders whose code was deleted from source tree
    (bundled libidn library was removed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "gamesessions.h"
28
28
#include "common.h"
29
29
#include "options.h"
 
30
#include <QFileDialog>
30
31
 
31
 
#define constVersion            "0.1.0"
 
32
#define constVersion            "0.1.2"
32
33
#define constShortPluginName    "gomokugameplugin"
33
34
 
 
35
#ifndef HAVE_QT5
34
36
Q_EXPORT_PLUGIN(GomokuGamePlugin);
 
37
#endif
35
38
 
36
39
GomokuGamePlugin::GomokuGamePlugin(QObject *parent) :
37
40
                QObject(parent),
147
150
        ui_.cb_save_w_h->setChecked(options->getOption(constSaveWndWidthHeight).toBool());
148
151
}
149
152
 
 
153
QPixmap GomokuGamePlugin::icon() const
 
154
{
 
155
        return QPixmap(":/gomokugameplugin/img/gomoku_16.png");
 
156
}
 
157
 
150
158
/**
151
159
 * Получение списка ресурсов и вызов формы для отправки приглашения
152
160
 */