~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to .pc/upstream_git/0020-Remove-old-kded-module-from-muon.patch/kded/distupgradeevent/distupgradeevent.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2014-04-10 12:31:06 UTC
  • mfrom: (1.4.30)
  • Revision ID: package-import@ubuntu.com-20140410123106-0vhap8u14b0vicql
Tags: 2.2.0-0ubuntu1
* Upstream final release
  + Dropping all patches/upstream_git of previously imported fixes.
* Remove muon-notifier.mo from debian/*install as the bugger was merged
  into libmuon's translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright © 2009 Jonathan Thomas <echidnaman@kubuntu.org>             *
3
 
 *   Copyright © 2009 Harald Sitter <apachelogger@ubuntu.com>              *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or         *
6
 
 *   modify it under the terms of the GNU General Public License as        *
7
 
 *   published by the Free Software Foundation; either version 2 of        *
8
 
 *   the License or (at your option) version 3 or any later version        *
9
 
 *   accepted by the membership of KDE e.V. (or its successor approved     *
10
 
 *   by the membership of KDE e.V.), which shall act as a proxy            *
11
 
 *   defined in Section 14 of version 3 of the license.                    *
12
 
 *                                                                         *
13
 
 *   This program is distributed in the hope that it will be useful,       *
14
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16
 
 *   GNU General Public License for more details.                          *
17
 
 *                                                                         *
18
 
 *   You should have received a copy of the GNU General Public License     *
19
 
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
20
 
 ***************************************************************************/
21
 
 
22
 
#ifndef DISTUPGRADEEVENT_H
23
 
#define DISTUPGRADEEVENT_H
24
 
 
25
 
#include "../event.h"
26
 
 
27
 
class DistUpgradeEvent : public Event
28
 
{
29
 
    Q_OBJECT
30
 
public:
31
 
    DistUpgradeEvent(QObject* parent, QString name);
32
 
 
33
 
public slots:
34
 
    void show();
35
 
 
36
 
private slots:
37
 
    void run();
38
 
};
39
 
 
40
 
#endif