~macslow/unity/backported-remote-add-to-5.0

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/SimpleLauncherIcon.cpp

Merging with upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <NuxCore/Logger.h>
24
24
#include <Nux/Nux.h>
25
25
#include <Nux/BaseWindow.h>
 
26
#include <UnityCore/Variant.h>
26
27
 
27
28
#include "SimpleLauncherIcon.h"
28
29
#include "PluginAdapter.h"
148
149
  return "SimpleLauncherIcon";
149
150
}
150
151
 
 
152
void SimpleLauncherIcon::AddProperties(GVariantBuilder* builder)
 
153
{
 
154
  LauncherIcon::AddProperties(builder);
 
155
  variant::BuilderWrapper(builder).add("icon_name", icon_name);
 
156
}
 
157
 
151
158
} // namespace launcher
152
159
} // namespace unity
153
160