src/gui_editactions.cpp

changeset 279
86a325a6b7c7
parent 277
246ca26620ce
child 283
c5401af41685
--- a/src/gui_editactions.cpp	Thu Jun 13 03:01:09 2013 +0300
+++ b/src/gui_editactions.cpp	Thu Jun 13 03:05:54 2013 +0300
@@ -39,7 +39,7 @@
 // =============================================================================
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
-static bool copyToClipboard () {
+static void copyToClipboard () {
 	vector<LDObject*> objs = g_win->sel ();
 	
 	// Clear the clipboard first.
@@ -48,8 +48,6 @@
 	// Now, copy the contents into the clipboard.
 	for (LDObject* obj : objs)
 		g_Clipboard << obj->raw ();
-	
-	return true;
 }
 
 // =============================================================================
@@ -216,7 +214,7 @@
 // =============================================================================
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
-MAKE_ACTION (setContents, "Set Contents", "set-contents", "Set the raw code of this object.", KEY (F9)) {
+MAKE_ACTION (setContents, "Edit LDraw Code", "set-contents", "Edit the LDraw code of this object.", KEY (F9)) {
 	if (g_win->sel ().size() != 1)
 		return;
 	
@@ -234,7 +232,7 @@
 	
 	oldobj->replace (obj);
 	
-	// Rebuild stuff after this
+	// Refresh
 	g_win->R ()->compileObject (obj);
 	g_win->refresh ();
 }

mercurial