~ubuntu-branches/debian/stretch/knewstuff/stretch

« back to all changes in this revision

Viewing changes to src/button.h

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia
  • Date: 2015-09-15 13:48:54 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20150915134854-228ak6hnjetcmqu4
Tags: 5.14.0-1
* New upstream release (5.14.0).
* Removed private classes from exported symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
namespace KNS3
28
28
{
29
 
 
 
29
class ButtonPrivate;
30
30
/**
31
31
 * KHotNewStuff push button that makes using KHNS in an application
32
32
 * more convenient by encapsulating most of the details involved in
91
91
private:
92
92
    void init();
93
93
 
94
 
    class Private;
95
 
    Private *const d;
 
94
    ButtonPrivate *const d;
96
95
};
97
96
 
98
97
}