[Uml-devel] branches/work/soc-umbrello

Gopala Krishna A krishna.ggk at gmail.com
Tue Jul 8 18:30:18 UTC 2008


SVN commit 829621 by gopala:

Merged revisions 816861 via svnmerge from 
svn+ssh://svn.kde.org/home/kde/trunk/KDE/kdesdk/umbrello

........
  r816861 | fischer | 2008-06-05 02:04:03 +0530 (Thu, 05 Jun 2008) | 1 line
  
  hide some unused variables and parameters.
........


 _M            . (directory)  
 M  +1 -0      umbrello/codegenobjectwithtextblocks.cpp  
 M  +3 -2      umbrello/dialogs/codeeditor.cpp  


** branches/work/soc-umbrello #property svnmerge-integrated
   - /trunk/KDE/kdesdk/umbrello:1-814855,815154,815906,815954,816854
   + /trunk/KDE/kdesdk/umbrello:1-814855,815154,815906,815954,816854,816861
--- branches/work/soc-umbrello/umbrello/codegenobjectwithtextblocks.cpp #829620:829621
@@ -321,6 +321,7 @@
 
 void CodeGenObjectWithTextBlocks::setAttributesFromObject (CodeGenObjectWithTextBlocks * obj)
 {
+    Q_UNUSED(obj);
 /*
     TextBlockList * list = obj->getTextBlockList();
     foreach (TextBlock* tb, *list) {
--- branches/work/soc-umbrello/umbrello/dialogs/codeeditor.cpp #829620:829621
@@ -1261,11 +1261,12 @@
 // after the dialog disappears
 void CodeEditor::rebuildView( int startCursorPos )
 {
+    Q_UNUSED(startCursorPos);  //:TODO:
     loadFromDocument();
     // make a minima attempt to leave the cursor (view of the code) where
     // we started
-    int new_nrof_para = paragraphs() -1;
-//:TODO:    setCursorPosition((startCursorPos < new_nrof_para ? startCursorPos : 0), 0);  // crashes the application
+//:TODO:    int new_nrof_para = paragraphs() -1;
+//:TODO:    setCursorPosition((startCursorPos < new_nrof_para ? startCursorPos : 0), 0);  //:TODO: crashes the application
 }
 
 




More information about the umbrello-devel mailing list