Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 Create Declaration

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
plabrie Posted - Dec 03 2009 : 12:26:45 PM
I have a problem with this refactor method. It doesn't seems to have a snippet to customize it, and if i look on the website, it seems to behave properly, but if I do it, it create the declaration, but it does eg.
void ClassName::Function();

where I want
void Function();

Any Idea ?

Thank you.

*moved by feline to correct section*
9   L A T E S T    R E P L I E S    (Newest First)
support Posted - Sep 25 2013 : 4:38:36 PM
case=6593 nested namespace issue is fixed in build 2001.
support Posted - Jun 03 2013 : 2:04:00 PM
case=6593 is fixed in build 1940
plabrie Posted - Dec 10 2011 : 02:59:10 AM
Nvm, I'm sorry. I just read
http://docs.wholetomato.com?W318&SearchTerms=case,track
plabrie Posted - Dec 10 2011 : 02:57:31 AM
Is there any way to see the case tracking, and the others cases existing ? I was looking in the credits to find out how many developpers where working on the software but couldn't find my answer.

Thank you for the help. I really love visual assist and I hope it can keep going with the competition!
feline Posted - Mar 09 2010 : 3:31:50 PM
I have increased the priority on this for you.

There is no general rule on how long bugs take to fix. We try to fix bugs as quickly as possible, but there are quite a few outstanding bug reports, and prioritising them is sometimes difficult.
plabrie Posted - Mar 08 2010 : 8:02:17 PM
How long does it usually take before a similar bug is fixed ? I don't want to put any pressure. I am just curious and been hoping for a fix in the upcoming beta release since it's something I use on a daily basis.
accord Posted - Dec 10 2009 : 03:55:16 AM
I am seeing the same effect here. Thank you for the clear description:

case=6593
plabrie Posted - Dec 09 2009 : 10:22:21 PM
Sorry for the delay. I finally made a small example. Here:

.hpp
#ifndef __SPACESHIP_HPP_
#define __SPACESHIP_HPP_

namespace Game
{
    class SpaceShip
    {
    public:
        SpaceShip();
    };
}

#endif

.cpp
#include "SpaceShip.hpp"


namespace Game
{
    SpaceShip::SpaceShip()
    {

    }

    SpaceShip::Allo()
    {

    }
}



Now, on
SpaceShip::Allo()
I use Refactor-> Create Declaration

This is now the .hpp

#ifndef __SPACESHIP_HPP_
#define __SPACESHIP_HPP_

namespace Game
{
    class SpaceShip
    {
    public:
        SpaceShip();
        SpaceShip::Allo();
    };
}

#endif


Where I want only
Allo();
to be created.

Thank you.

Visual Assist X Version 10.5.1738.0
feline Posted - Dec 03 2009 : 2:20:17 PM
I would need to see some sample code that reproduces this problem before I could comment.

VA should remove the class name on the new declaration if the declaration has been placed into the class scope. I am wondering if some C++ macros are confusing the issue.

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000