~ricotz/plank/consolidate-api

« back to all changes in this revision

Viewing changes to lib/Items/PlankDockItem.vala

  • Committer: Rico Tzschichholz
  • Date: 2015-11-03 10:37:19 UTC
  • Revision ID: ricotz@ubuntu.com-20151103103719-s2gik7a9cnove1tg
Drop nested namespaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
18
//
19
19
 
20
 
using Plank.Factories;
21
 
using Plank.Services;
22
 
using Plank.Widgets;
23
 
 
24
 
namespace Plank.Items
 
20
namespace Plank
25
21
{
26
22
        /**
27
23
         * A dock item for the dock itself.  Has things like about, help, quit etc.
60
56
                /**
61
57
                 * {@inheritDoc}
62
58
                 */
63
 
                protected override Animation on_clicked (PopupButton button, Gdk.ModifierType mod, uint32 event_time)
 
59
                protected override AnimationType on_clicked (PopupButton button, Gdk.ModifierType mod, uint32 event_time)
64
60
                {
65
61
                        Application.get_default ().activate_action ("preferences", null);
66
62
                        
67
 
                        return Animation.DARKEN;
 
63
                        return AnimationType.DARKEN;
68
64
                }
69
65
                
70
66
                /**