Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 131831 | Differences between
and this patch

Collapse All | Expand All

(-)gephex-0.4.3.old/base/src/utils/structscanner.h (-3 / +3 lines)
Lines 40-50 Link Here
40
{
40
{
41
 IStructTokenListener& m_listener;
41
 IStructTokenListener& m_listener;
42
  
42
  
43
  void StructScanner::divideNameFromContent(const std::string& text,
43
  void divideNameFromContent(const std::string& text,
44
					    std::string& name,
44
					    std::string& name,
45
					    std::string& content) const;
45
					    std::string& content) const;
46
  void StructScanner::processName(const std::string& name) const;
46
  void processName(const std::string& name) const;
47
  void StructScanner::processContent(const std::string& content) const;
47
  void processContent(const std::string& content) const;
48
  std::string::size_type
48
  std::string::size_type
49
  findNextClosingBracket(const std::string& content,
49
  findNextClosingBracket(const std::string& content,
50
			 std::string::size_type n) const;
50
			 std::string::size_type n) const;
(-)gephex-0.4.3.old/engine/src/model/model.h (-1 / +1 lines)
Lines 235-241 Link Here
235
      void deleteModule(utils::AutoPtr<Graph>, int moduleID);
235
      void deleteModule(utils::AutoPtr<Graph>, int moduleID);
236
236
237
#ifndef NDEBUG
237
#ifndef NDEBUG
238
      void Model::checkGraphSerialisation();
238
      void checkGraphSerialisation();
239
#endif
239
#endif
240
240
241
    };
241
    };
(-)gephex-0.4.3.old/qtgui/src/gui/graphnameview.cpp (-2 / +2 lines)
Lines 266-272 Link Here
266
      m_textListener->textChanged(1,newStatus.c_str());
266
      m_textListener->textChanged(1,newStatus.c_str());
267
    }
267
    }
268
268
269
    virtual void GraphItem::propertySelected(int id)
269
    virtual void propertySelected(int id)
270
    {
270
    {
271
      switch(id)
271
      switch(id)
272
	{
272
	{
Lines 428-434 Link Here
428
      m_textListener->textChanged(1,newStatus.c_str());
428
      m_textListener->textChanged(1,newStatus.c_str());
429
    }
429
    }
430
430
431
    void SnapItem::propertySelected(int id)
431
    void propertySelected(int id)
432
    {
432
    {
433
      switch(id)
433
      switch(id)
434
	{
434
	{

Return to bug 131831