~ubuntu-branches/ubuntu/trusty/ginkgocadx/trusty

« back to all changes in this revision

Viewing changes to src/cadxcore/widgets/gui/selecciontexto.cpp

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-07-21 11:58:53 UTC
  • mfrom: (1.2.1) (7.1.6 experimental)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20130721115853-0aii5ee76hxm8z1f
* New upstream release [July 2013]
  + new B-D: "libjsoncpp-dev".
  + new patch "unbundle-libjsoncpp.patch" to avoid building bundled
    "libjsoncpp-dev".
  + new patch "fix-wx.patch" to avoid FTBFS due to missing
    "-lwx_gtk2u_html-2.8".
* Removed unnecessary versioned Build-Depends.
* Removed obsolete lintian override.
* Reference get-orig-source implementation for orig.tar clean-up and
  DFSG-repackaging.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  
3
 
 *  $Id: selecciontexto.cpp 3526 2011-03-16 19:56:19Z carlos $
 
3
 *  $Id: selecciontexto.cpp $
4
4
 *  Ginkgo CADx Project
5
5
 *
6
 
 *  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
 
6
 *  Copyright 2008-12 MetaEmotion S.L. All rights reserved.
7
7
 *  http://ginkgo-cadx.com
8
8
 *
9
9
 *  This file is licensed under LGPL v3 license.
15
15
#include <wx/icon.h>
16
16
#include "selecciontexto.h"
17
17
#include <api/iwidgetsmanager.h>
18
 
#include <resources/ginkgoresourcemanager.h>
 
18
#include <resources/ginkgoresourcesmanager.h>
19
19
#include <wx/xml/xml.h>
20
20
 
21
21
GNC::GCS::Widgets::Dialogos::SeleccionTexto::SeleccionTexto(wxWindow* parent, TWidget* pWidget, TManager* pManager) : SeleccionTextoBase(parent)
22
22
{
23
23
        wxIcon icono;
24
 
        icono.CopyFromBitmap(GinkgoResourcesManager::IconosMenus::GetIcoEditar());
 
24
        icono.CopyFromBitmap(GinkgoResourcesManager::MenuIcons::GetIcoEditar());
25
25
        this->SetIcon(icono);
26
26
 
27
27
        m_pWidget = pWidget;