Skip to content

Commit

Permalink
fix: debian package now install on EMC2 Live CD ubuntu version. Fix t…
Browse files Browse the repository at this point in the history
…ool add adn toll delete icons in file menu.
  • Loading branch information
Arnd Begemann committed Apr 25, 2008
1 parent cbc9355 commit c4306af
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
gcnccam (0.4.2-2) unstable; urgency=high

* Urgency HIGH since the version doesn't install on EMC Live CD Release.
* Removed package on control file.

-- Arnd Begemann <arnd.begemann@gmx.de> Tue, 25 March 2008 14:45:12 +0100

gcnccam (0.4.2-1) unstable; urgency=low

* Initial Release
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Standards-Version: 3.7.2

Package: gcnccam
Architecture: any
Depends: ${shlibs:Depends}
Depends: libgnomeuimm-2.6-1c2a
Description: graphic tool that conver drawings like dxf to CNC g-code
15 changes: 15 additions & 0 deletions gcnccam.pws
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,23 @@ RunInTerminal=true
[Project State]
clean before build=false

[filenumbers]
0=1070

[filemarkers]
0=

[filelist]
0=/home/abegeman/sf_project/gcnccam/trunk/src/WindowMain.cc

[Project Tree]
0=0
1=0:0
2=0:1

[Symbol Tree]
0=1
1=1:39

[File Tree]
0=0
4 changes: 2 additions & 2 deletions src/WindowMain.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ void WindowMain::loadImages()
//
std::string path_img_tool20 = PACKAGE_PIXMAPS_DIR;
path_img_tool20.append(1,G_DIR_SEPARATOR);
path_img_tool20.append("layerprop20.png");
path_img_tool20.append("tool20.png");
Glib::RefPtr<Gdk::Pixbuf> buf_tool20=Gdk::Pixbuf::create_from_file(path_img_tool20);
img_tool20 = Gtk::manage(new class Gtk::Image(buf_tool20));
if(img_tool20)
Expand All @@ -1080,7 +1080,7 @@ void WindowMain::loadImages()

std::string path_img_tool_del20 = PACKAGE_PIXMAPS_DIR;
path_img_tool_del20.append(1,G_DIR_SEPARATOR);
path_img_tool_del20.append("layerprop_del20.png");
path_img_tool_del20.append("tool_del20.png");
Glib::RefPtr<Gdk::Pixbuf> buf_tool_del20=Gdk::Pixbuf::create_from_file(path_img_tool_del20);
img_tool_del20 = Gtk::manage(new class Gtk::Image(buf_tool_del20));
if(img_tool_del20)
Expand Down

0 comments on commit c4306af

Please sign in to comment.