~njpatel/unity/remove-initial-result-hacks

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/LauncherDragWindow.h

  • Committer: Neil Jagdish Patel
  • Author(s): Andrea Azzarone
  • Date: 2011-09-07 13:46:51 UTC
  • mfrom: (1489.1.5 unity-5-09)
  • Revision ID: neil.patel@canonical.com-20110907134651-4v19l0ghclbbz2aa
I noticed that in many files we use something like this:

#include "Nux/..."

Maybe it's better this:

#include <Nux/...>

I don't know if there is a good reason to use the former form, if so please apologise me for the merge proposal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef LAUNCHERDRAGWINDOW_H
21
21
#define LAUNCHERDRAGWINDOW_H
22
22
 
23
 
#include "Nux/Nux.h"
24
 
#include "Nux/BaseWindow.h"
25
 
#include "NuxGraphics/GraphicsEngine.h"
 
23
#include <Nux/Nux.h>
 
24
#include <Nux/BaseWindow.h>
 
25
#include <NuxGraphics/GraphicsEngine.h>
26
26
 
27
27
#include "LauncherIcon.h"
28
28